diff --git a/src/Data/Uniques/boots.lua b/src/Data/Uniques/boots.lua index e4c07b0ee3..9e52d235ac 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/Export/Uniques/boots.lua b/src/Export/Uniques/boots.lua index 1c78047f7e..95eeda9922 100644 --- a/src/Export/Uniques/boots.lua +++ b/src/Export/Uniques/boots.lua @@ -84,7 +84,6 @@ UniqueLocalIncreasedEvasionRatingPercent13 UniqueDexterity20 {variant:1}UniqueLightningResist11[5,15] {variant:2}UniqueLightningResist11 -UniqueLightningResist11 UniqueRandomMovementVelocityOnHit1 ]],[[ Thunderstep diff --git a/src/Modules/ItemTools.lua b/src/Modules/ItemTools.lua index 3c362f7db9..a766703c86 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 line:match("^%+?0%%? ") or (line:match(" %+?0%%? ") and not line:match("0 to [1-9]") and not line:match("0%% to %d+%%")) or line:match(" 0%-0 ") or line:match(" 0 to 0 ") then -- Hack to hide 0-value modifiers return end local colorCode