diff options
author | Machiavelli <none@none> | 2010-05-12 23:18:03 +0200 |
---|---|---|
committer | Machiavelli <none@none> | 2010-05-12 23:18:03 +0200 |
commit | 7336157d7e5aa68f52d2bf28c04e3e194535de58 (patch) | |
tree | 417092440a4cebd9f3631063b891b7cf9c0d04c2 | |
parent | 737ebb99f7f3f4c672bf6b17bce00fc83bf9f8ad (diff) |
Remove Non-Blizzlike hack for spell 25899 - Greater Blessing of Sanctuary. It now gives 10% strength increase as intended.
--HG--
branch : trunk
-rw-r--r-- | src/game/SpellAuraEffects.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/game/SpellAuraEffects.cpp b/src/game/SpellAuraEffects.cpp index 937a91f554e..bba205d1046 100644 --- a/src/game/SpellAuraEffects.cpp +++ b/src/game/SpellAuraEffects.cpp @@ -5982,11 +5982,7 @@ void AuraEffect::HandleAuraDummy(AuraApplication const * aurApp, uint8 mode, boo break; if (apply) - { - // Greater Blessing of Sanctuary does not provide strength bonus - int32 bp1 = 0; - caster->CastCustomSpell(target, 67480, NULL, (GetSpellProto()->SpellIconID == 1804) ? &bp1 : NULL, NULL, true); - } + caster->CastSpell(target, 67480, true); else target->RemoveAura(67480, GetCasterGUID()); |