Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix error when crafting a fishing rod enchant #8518

Merged
merged 2 commits into from
Feb 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Data/EnchantmentWeapon.lua
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,6 @@ return {
{ type = "Runecraft", modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire" }, "(7-10)% increased Fire Damage per 1% Fire Resistance above 75%", statOrder = { 6103 }, types = { ["Two Handed Axe"] = true, }, },
{ type = "Runecraft", modTags = { "village_runesmithing_enchant" }, "+(50-75)% chance to Suppress Spell Damage while your Off Hand is empty", statOrder = { 9440 }, types = { ["One Handed Mace"] = true, ["Sceptre"] = true, }, },
{ type = "Runecraft", modTags = { "village_runesmithing_enchant", "damage", "vaal" }, "Shepherd of Souls", statOrder = { 9993 }, types = { ["Wand"] = true, }, },
{ type = "Runecraft", modTags = { "village_runesmithing_enchant" }, "5% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6783 }, types = { }, },
{ type = "Runecraft", modTags = { "village_runesmithing_enchant" }, "5% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6783 }, types = { ["Fishing Rod"] = true, }, },
},
}
2 changes: 1 addition & 1 deletion src/Export/Scripts/enchant.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ local itemClassMap = {
["One Hand Axe"] = "One Handed Axe",
["One Hand Mace"] = "One Handed Mace",
["Bow"] = "Bow",
["Fishing Rod"] = "Fishing Rod",
["FishingRod"] = "Fishing Rod",
["Staff"] = "Staff",
["Warstaff"] = "Staff",
["Two Hand Sword"] = "Two Handed Sword",
Expand Down