diff --git a/Dalamud/Game/ClientState/JobGauge/Types/ASTGauge.cs b/Dalamud/Game/ClientState/JobGauge/Types/ASTGauge.cs
index 45175344f..14b2ff19f 100644
--- a/Dalamud/Game/ClientState/JobGauge/Types/ASTGauge.cs
+++ b/Dalamud/Game/ClientState/JobGauge/Types/ASTGauge.cs
@@ -22,7 +22,13 @@ namespace Dalamud.Game.ClientState.JobGauge.Types
/// Gets the currently drawn .
///
/// Currently drawn .
- public CardType DrawnCard => (CardType)this.Struct->Card;
+ public CardType DrawnCard => (CardType)(this.Struct->Card & 0xF);
+
+ ///
+ /// Gets the currently drawn crown .
+ ///
+ /// Currently drawn crown .
+ public CardType DrawnCrownCard => (CardType)(this.Struct->Card - (this.Struct->Card % 10));
///
/// Check if a is currently active on the divination gauge.
diff --git a/lib/FFXIVClientStructs b/lib/FFXIVClientStructs
index d578045be..306695be6 160000
--- a/lib/FFXIVClientStructs
+++ b/lib/FFXIVClientStructs
@@ -1 +1 @@
-Subproject commit d578045bea85822bdf7853d3182c5b28d6fffd1c
+Subproject commit 306695be6ad489d1f596c1d5fa8db9206b742189