diff options
| author | Shauren <none@none> | 2010-12-20 11:04:48 +0100 |
|---|---|---|
| committer | Shauren <none@none> | 2010-12-20 11:04:48 +0100 |
| commit | 756ee5832ba09923eb0e736fd85f8ba0ae72001e (patch) | |
| tree | 16d1c0f253d452c6dd7e7aa04e53780d816a9401 /src/server/scripts/Spells | |
| parent | 6ec717ed5b062113161a3d67783992b17103f25d (diff) | |
Core/Auras: Allow stacking of auras proced from different items
Closes issue #2296.
--HG--
branch : trunk
Diffstat (limited to 'src/server/scripts/Spells')
| -rw-r--r-- | src/server/scripts/Spells/spell_generic.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Spells/spell_generic.cpp b/src/server/scripts/Spells/spell_generic.cpp index b8559e0ede2..45b98438a2c 100644 --- a/src/server/scripts/Spells/spell_generic.cpp +++ b/src/server/scripts/Spells/spell_generic.cpp @@ -501,7 +501,7 @@ class spell_gen_animal_blood : public SpellScriptLoader void OnApply(AuraEffect const* /*aurEff*/, AuraApplication const* /*aurApp*/, AuraEffectHandleModes /*mode*/) { // Remove all auras with spell id 46221, except the one currently being applied - while (Aura* aur = GetUnitOwner()->GetOwnedAura(SPELL_ANIMAL_BLOOD, 0, 0, GetAura())) + while (Aura* aur = GetUnitOwner()->GetOwnedAura(SPELL_ANIMAL_BLOOD, 0, 0, 0, GetAura())) GetUnitOwner()->RemoveOwnedAura(aur); } |
