Skip to content
Open
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
4 changes: 2 additions & 2 deletions src/Classes/ItemsTab.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1932,7 +1932,7 @@ function ItemsTabClass:GetValidRunesForItem(item)
local function isRuneValidForSlot(runeSlot)
if runeSlot == "None" then
return true
elseif runeSlot == "warstaff" then
elseif runeSlot == "quarterstaff" then
return subType == "warstaff"
elseif runeSlot == "buckler" then
return itemType == "shield" and subType == "evasion"
Expand All @@ -1943,7 +1943,7 @@ function ItemsTabClass:GetValidRunesForItem(item)
elseif runeSlot == "caster" then
return item.base.tags.wand or item.base.tags.staff or item.base.tags.sceptre
else
return itemType == runeSlot
return itemType == runeSlot and not (subType == "warstaff")
end
end
if isRuneValidForSlot(rune.slot) then
Expand Down
Loading