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:
2026-01-31 11:36:34 -05:00
parent 891eb59877
commit 95c4dfce38
6 changed files with 72 additions and 13 deletions
+2 -2
View File
@@ -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