Commit ad4c47d1 authored by Ivaria's avatar Ivaria
Browse files

Fixed boundary check for millions abbreviation of hit points.

parent f68ed46d
No related merge requests found
......@@ -137,7 +137,7 @@ end
--
local function VUHDO_getKiloText(aNumber, aMaxNumber, aSetup)
return aSetup["LIFE_TEXT"]["verbose"] and aNumber
or aMaxNumber > 1000000 and format("%.1fM", aNumber * 0.000001)
or aMaxNumber >= 1000000 and format("%.1fM", aNumber * 0.000001)
or aMaxNumber > 100000 and format("%.0fk", aNumber * 0.001)
or aMaxNumber > 10000 and format("%.1fk", aNumber * 0.001)
or aNumber;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment