Skip to content

Commit

Permalink
Fix TotalCastTime
Browse files Browse the repository at this point in the history
  • Loading branch information
Aireil authored Mar 4, 2024
1 parent 5f62c70 commit 6e6b289
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dalamud/Game/ClientState/Objects/Types/BattleChara.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ internal BattleChara(IntPtr address)
/// <summary>
/// Gets the total casting time of the spell being cast by the chara.
/// </summary>
public float TotalCastTime => this.Struct->GetCastInfo->TotalCastTime;
public float TotalCastTime => this.Struct->GetCastInfo->AdjustedTotalCastTime;

/// <summary>
/// Gets the underlying structure.
Expand Down

0 comments on commit 6e6b289

Please sign in to comment.