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 43510a6 commit 4e70d21Copy full SHA for 4e70d21
src/Classes/Item.lua
@@ -1538,7 +1538,11 @@ function ItemClass:BuildModList()
1538
local list, extra = modLib.parseMod(line)
1539
if list and not extra then
1540
modLine.modList = list
1541
- t_insert(self.rangeLineList, modLine)
+ -- Against the Darkness specific // a way to cut down on really long modLines in the range dropdown
1542
+ -- copy the modLine so we don't actually change the mod, only the display
1543
+ local rangeLine = copyTable(modLine)
1544
+ rangeLine.line = rangeLine.line:gsub(" Passive Skills in Radius also grant", ":")
1545
+ t_insert(self.rangeLineList, rangeLine)
1546
end
1547
1548
0 commit comments