diff options
author | Vincent-Michael <Vincent_Michael@gmx.de> | 2013-08-02 14:40:49 +0200 |
---|---|---|
committer | Vincent-Michael <Vincent_Michael@gmx.de> | 2013-08-02 14:40:49 +0200 |
commit | 5b0cd048103e8ebf9620be06a30d1bcf0e901dd6 (patch) | |
tree | 124a893d77a0c0a71a697e9844ecdf1cec5b41bd /src | |
parent | 26d090fa9ac9457819874b0a7b5df7f57e6ee504 (diff) |
Core/Spells: Remove invalid spell entry for mondkingestalt
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/Spells/Auras/SpellAuraEffects.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/server/game/Spells/Auras/SpellAuraEffects.cpp b/src/server/game/Spells/Auras/SpellAuraEffects.cpp index e2f0a8b8b00..8adf1ce68ad 100644 --- a/src/server/game/Spells/Auras/SpellAuraEffects.cpp +++ b/src/server/game/Spells/Auras/SpellAuraEffects.cpp @@ -1158,7 +1158,6 @@ void AuraEffect::HandleShapeshiftBoosts(Unit* target, bool apply) const break; case FORM_MOONKIN: spellId = 24905; - spellId2 = 69366; break; case FORM_FLIGHT: spellId = 33948; @@ -2250,8 +2249,8 @@ void AuraEffect::HandleAuraModDisarm(AuraApplication const* aurApp, uint8 mode, AuraType type = GetAuraType(); - //Prevent handling aura twice - if ((apply) ? target->GetAuraEffectsByType(type).size() > 1 : target->HasAuraType(type)) + // Prevent handling aura twice + if (apply ? target->GetAuraEffectsByType(type).size() > 1 : target->HasAuraType(type)) return; uint32 field, flag, slot; |