- 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:
+1
-1
@@ -4829,7 +4829,7 @@ local SPELL_POWER_PAIN = SPELL_POWER_PAIN or (PowerEnum and PowerEnum.Pain) or 1
|
||||
print ("group damage", #_detalhes.cache_damage_group)
|
||||
print ("group damage", #_detalhes.cache_healing_group)
|
||||
end
|
||||
|
||||
|
||||
function _detalhes:GetActorsOnDamageCache()
|
||||
return _detalhes.cache_damage_group
|
||||
end
|
||||
|
||||
+2
-2
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user