Skip to content
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/Classes/ItemsTab.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1718,7 +1718,7 @@ function ItemsTabClass:UpdateCustomControls()
t_insert(modLines, line)
end
end
if item.rarity == "MAGIC" or item.rarity == "RARE" or item.crucibleModLines then
if item.rarity == "MAGIC" or item.rarity == "RARE" or (item.crucibleModLines and #item.crucibleModLines > 0) then
for index, modLine in ipairs(modLines) do
if modLine.custom or modLine.crafted or modLine.crucible then
local line = itemLib.formatModLine(modLine)
Expand Down