You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add Desecrated mods to Custom modifiers dropdown (#1773)
* Add Desecrated mods to Custom modifiers dropdown
* Show the remove button for the desecrated custom mod
* Fix desecrated specific mods not showing up for maces and other weapons
Some of the desecrated only mods weren't correctly looking through the spawn tags
Also now doesn't use the existance of an essence mod for the desecrated mod pool to show up
---------
Co-authored-by: LocalIdentity <localidentity2@gmail.com>
Copy file name to clipboardExpand all lines: src/Modules/ItemTools.lua
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -335,7 +335,7 @@ function itemLib.formatModLine(modLine, dbMode)
335
335
line=line.." ^1'" ..modLine.extra.."'"
336
336
end
337
337
else
338
-
colorCode= (modLine.enchantandcolorCodes.ENCHANTED) or (modLine.fracturedandcolorCodes.FRACTURED) or (modLine.mutatedandcolorCodes.MUTATED) or (modLine.customandcolorCodes.CUSTOM) orcolorCodes.MAGIC
338
+
colorCode= (modLine.enchantandcolorCodes.ENCHANTED) or (modLine.fracturedandcolorCodes.FRACTURED) or (modLine.mutatedandcolorCodes.MUTATED) or (modLine.customand(notmodLine.desecratedandcolorCodes.CUSTOM)) orcolorCodes.MAGIC
0 commit comments