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
7 changes: 6 additions & 1 deletion src/Classes/ItemsTab.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2604,7 +2604,12 @@ function ItemsTabClass:AddCustomModifierToDisplayItem()
end)
elseif sourceId == "ESSENCE" then
for _, essence in pairs(self.build.data.essences) do
local modId = essence.mods[self.displayItem.type]
local modId
if self.displayItem.type == "Two Handed Mace" then
modId = essence.mods["Two Hand Mace"]
else
modId = essence.mods[self.displayItem.type]
end
if modId then
local mod = self.displayItem.affixes[modId] or data.itemMods.Exclusive[modId]
if mod then -- passive_hash mods don't get described
Expand Down