- Fixed East Asian myriads showing a giganting non formated number in the total bar DPS.

- Added a reset nickname button in the right side of the nickname field.
- Framework and NickTag library updates.
This commit is contained in:
Tercioo
2018-12-03 17:25:35 -02:00
parent 857ddbbc9e
commit 24d5be67d2
8 changed files with 215 additions and 275 deletions
+2 -2
View File
@@ -147,7 +147,7 @@
elseif (numero > 1000) then
return _string_format ("%.1f", numero/1000) .. symbol_1K
end
return numero
return _string_format ("%.0f", numero)
end
function _detalhes:ToK2 (numero)
@@ -185,7 +185,7 @@
elseif (numero > 1000) then
return _string_format ("%.1f", numero/1000) .. symbol_1K
end
return numero
return _string_format ("%.0f", numero)
end
function _detalhes:ToK2Min (numero)