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 b3d7418 commit bee1726Copy full SHA for bee1726
1 file changed
src/Classes/ItemsTab.lua
@@ -2817,8 +2817,10 @@ function ItemsTabClass:AddCustomModifierToDisplayItem()
2817
return modA.level > modB.level
2818
end)
2819
elseif sourceId == "ESSENCE" then
2820
+ local itemType = (self.displayItem.type == "Staff" and self.displayItem.base.subType) or
2821
+ self.displayItem.type
2822
for _, essence in pairs(self.build.data.essences) do
- local modId = essence.mods[self.displayItem.type]
2823
+ local modId = essence.mods[itemType]
2824
if modId then
2825
local mod = self.displayItem.affixes[modId] or data.itemMods.Exclusive[modId]
2826
if mod then -- passive_hash mods don't get described
0 commit comments