From 8f565b7e13908d10ce6c44ce91659b347b7f53f1 Mon Sep 17 00:00:00 2001 From: Shauren Date: Tue, 22 Mar 2011 21:51:39 +0100 Subject: Core/Auras: Do not save Incanter's Absorbtion proc to database, its unique way of stacking causes problems and aborts entire save transaction --- src/server/game/Spells/Auras/SpellAuras.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src') diff --git a/src/server/game/Spells/Auras/SpellAuras.cpp b/src/server/game/Spells/Auras/SpellAuras.cpp index ff83372d96f..ccfa848811f 100755 --- a/src/server/game/Spells/Auras/SpellAuras.cpp +++ b/src/server/game/Spells/Auras/SpellAuras.cpp @@ -816,6 +816,11 @@ bool Aura::CanBeSaved() const if (HasEffectType(SPELL_AURA_OPEN_STABLE)) return false; + // Incanter's Absorbtion - considering the minimal duration and problems with aura stacking + // we skip saving this aura + if (GetId() == 44413) + return false; + return true; } -- cgit v1.2.3