We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76b17e9 commit b468665Copy full SHA for b468665
1 file changed
src/Classes/ItemsTab.lua
@@ -2883,8 +2883,9 @@ function ItemsTabClass:AddCustomModifierToDisplayItem()
2883
return modA.level > modB.level
2884
end)
2885
elseif sourceId == "ESSENCE" then
2886
+ local itemType = (self.displayItem.type == "Staff" and self.displayItem.base.subType) or self.displayItem.type
2887
for _, essence in pairs(self.build.data.essences) do
- local modId = essence.mods[self.displayItem.type]
2888
+ local modId = essence.mods[itemType]
2889
if modId then
2890
local mod = self.displayItem.affixes[modId] or data.itemMods.Exclusive[modId]
2891
if mod then -- passive_hash mods don't get described
0 commit comments