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 issue where Sceptres and One Handed Maces were considered the same weapon type #5942

Merged
merged 1 commit into from
Apr 6, 2023
Merged
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/Modules/Data.lua
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ data.weaponTypeInfo = {
["One Handed Axe"] = { oneHand = true, melee = true, flag = "Axe" },
["One Handed Mace"] = { oneHand = true, melee = true, flag = "Mace" },
["One Handed Sword"] = { oneHand = true, melee = true, flag = "Sword" },
["Sceptre"] = { oneHand = true, melee = true, flag = "Mace", label = "One Handed Mace" },
["Sceptre"] = { oneHand = true, melee = true, flag = "Mace", label = "Sceptre" },
["Thrusting One Handed Sword"] = { oneHand = true, melee = true, flag = "Sword", label = "One Handed Sword" },
["Fishing Rod"] = { oneHand = false, melee = true, flag = "Fishing" },
["Two Handed Axe"] = { oneHand = false, melee = true, flag = "Axe" },
Expand Down