diff --git a/src/Data/Uniques/boots.lua b/src/Data/Uniques/boots.lua index e4c07b0e..9e52d235 100644 --- a/src/Data/Uniques/boots.lua +++ b/src/Data/Uniques/boots.lua @@ -84,7 +84,6 @@ Variant: Current +(10-15) to Dexterity {variant:1}+(5-15)% to Lightning Resistance {variant:2}+(15-25)% to Lightning Resistance -+(15-25)% to Lightning Resistance Gain 0% to 40% increased Movement Speed at random when Hit, until Hit again ]],[[ Thunderstep diff --git a/src/Modules/ItemTools.lua b/src/Modules/ItemTools.lua index 3f5e5468..67e0dafa 100644 --- a/src/Modules/ItemTools.lua +++ b/src/Modules/ItemTools.lua @@ -320,7 +320,7 @@ end function itemLib.formatModLine(modLine, dbMode) local line = (not dbMode and modLine.range and itemLib.applyRange(modLine.line, modLine.range, modLine.valueScalar, modLine.corruptedRange)) or modLine.line - if line:match("^%+?0%%? ") or (line:match(" %+?0%%? ") and not line:match("0 to [1-9]")) or line:match(" 0%-0 ") or line:match(" 0 to 0 ") then -- Hack to hide 0-value modifiers + if not line:match("^Gain %d+%% to %d+%%") and (line:match("^%+?0%%? ") or (line:match(" %+?0%%? ") and not line:match("0 to [1-9]")) or line:match(" 0%-0 ") or line:match(" 0 to 0 ")) then -- Hack to hide 0-value modifiers return end local colorCode