diff --git a/Source/Game/Spells/Auras/Aura.cs b/Source/Game/Spells/Auras/Aura.cs index 0b901ccab..98823da79 100644 --- a/Source/Game/Spells/Auras/Aura.cs +++ b/Source/Game/Spells/Auras/Aura.cs @@ -997,6 +997,11 @@ namespace Game.Spells if (GetId() == 67483 || GetId() == 67484 || GetId() == 48517 || GetId() == 48518) return false; + // Don't save druid forms, only the dummy. It will cast the appropriate form + // Swift Flight Flight Aquatic Stag + if (GetId() == 40120 || GetId() == 33943 || GetId() == 1066 || GetId() == 165961) + return false; + // don't save auras removed by proc system if (IsUsingCharges() && GetCharges() == 0) return false;