v1.0.2.5: More accurate hotbar cooldowns (ActionManager), fix tooltip cast/recast display
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -1378,8 +1378,8 @@ namespace HSUI.Interface.GeneralElements
|
||||
try
|
||||
{
|
||||
var parts = new List<string>();
|
||||
float castSec = action.Cast100ms / 100f;
|
||||
float recastSec = action.Recast100ms / 100f;
|
||||
float castSec = action.Cast100ms / 10f; // Cast100ms/Recast100ms are in 100ms units
|
||||
float recastSec = action.Recast100ms / 10f;
|
||||
if (castSec > 0)
|
||||
parts.Add($"Cast: {castSec:F1}s");
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user