From 9325f18528c8fe9dcb802ce9e7a7bfa9906a361e Mon Sep 17 00:00:00 2001 From: tkrokli Date: Wed, 27 May 2015 05:54:28 +0200 Subject: [3.3.5a][ICC/Professor Putricide] Volatile Ooze Eruption fix by @ManuFe and @Rushor; closes #12336 In the existing source, the rooting aura is removed after the explosion, therefore the knockback effect does not work because the player is still rooted. By swapping these 2 lines, the aura is removed, then the explosion happens. Result: rooting is removed before the knockback effect is cast on the player. --- .../scripts/Northrend/IcecrownCitadel/boss_professor_putricide.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/server/scripts') diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_professor_putricide.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_professor_putricide.cpp index 63082808e03..d7a580800bc 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/boss_professor_putricide.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_professor_putricide.cpp @@ -1060,8 +1060,8 @@ class spell_putricide_ooze_eruption_searcher : public SpellScriptLoader uint32 adhesiveId = sSpellMgr->GetSpellIdForDifficulty(SPELL_VOLATILE_OOZE_ADHESIVE, GetCaster()); if (GetHitUnit()->HasAura(adhesiveId)) { - GetCaster()->CastSpell(GetHitUnit(), SPELL_OOZE_ERUPTION, true); GetHitUnit()->RemoveAurasDueToSpell(adhesiveId, GetCaster()->GetGUID(), 0, AURA_REMOVE_BY_ENEMY_SPELL); + GetCaster()->CastSpell(GetHitUnit(), SPELL_OOZE_ERUPTION, true); } } -- cgit v1.2.3