diff --git a/Dalamud/Game/ClientState/JobGauge/Types/ASTGauge.cs b/Dalamud/Game/ClientState/JobGauge/Types/ASTGauge.cs index f0ca3269e..cb8ed1eb0 100644 --- a/Dalamud/Game/ClientState/JobGauge/Types/ASTGauge.cs +++ b/Dalamud/Game/ClientState/JobGauge/Types/ASTGauge.cs @@ -29,12 +29,12 @@ namespace Dalamud.Game.ClientState.JobGauge.Types /// Gets the currently drawn crown . /// /// Currently drawn crown . - public CardType DrawnCrownCard => (CardType)(this.Struct->Card - (this.Struct->Card % 10)); + public CardType DrawnCrownCard => this.Struct->Card - this.DrawnCard; /// /// Gets the s currently active. /// - public SealType[] Seals => this.Struct->CurrentSeals.Cast().ToArray(); + public SealType[] Seals => this.Struct->CurrentSeals.Select(seal => (SealType)seal).ToArray(); /// /// Check if a is currently active on the divination gauge.