We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1494169 + 5f1f863 commit 965d937Copy full SHA for 965d937
1 file changed
src/Classes/ItemsTab.lua
@@ -746,15 +746,15 @@ holding Shift will put it in the second.]])
746
tooltip:AddLine(14, maxLine)
747
else
748
local start = 1
749
- tooltip:AddLine(14, minLine:gsub("%d[%d%.]*", function(min)
+ tooltip:AddLine(14, (minLine:gsub("%d[%d%.]*", function(min)
750
local s, e, max = maxLine:find("(%d[%d%.]*)", start)
751
start = e + 1
752
if min == max then
753
return min
754
755
return "("..min.."-"..max..")"
756
end
757
- end))
+ end)))
758
759
760
tooltip:AddLine(16, "Level: "..minMod.level.." to "..maxMod.level)
0 commit comments