diff options
| author | ariel- <ariel-@users.noreply.github.com> | 2017-04-25 02:57:58 -0300 |
|---|---|---|
| committer | funjoker <funjoker109@gmail.com> | 2020-04-28 13:40:56 +0200 |
| commit | dea71597455d3846c801cd340f0f2a6248c61800 (patch) | |
| tree | 30d2c5d506f0ea068734baffb40b017a582b7bba | |
| parent | 3eee76b1c63469152a9e531da4f973d0e0471ac6 (diff) | |
Core/Scripts: fix gaseous bloat proc (again)
- UNIT_STATE_CASTING removal not needed for movement now, but it's needed for melee attacking
(cherry picked from commit 85076dd799a76b889d1d22890771f4bc445fd7f8)
| -rw-r--r-- | src/server/scripts/Northrend/IcecrownCitadel/boss_professor_putricide.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_professor_putricide.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_professor_putricide.cpp index f21051a36b3..116843c2398 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/boss_professor_putricide.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_professor_putricide.cpp @@ -933,6 +933,7 @@ class spell_putricide_ooze_channel : public SpellScriptLoader void StartAttack() { + GetCaster()->ClearUnitState(UNIT_STATE_CASTING); GetCaster()->DeleteThreatList(); GetCaster()->ToCreature()->AI()->AttackStart(GetHitUnit()); GetCaster()->AddThreat(GetHitUnit(), 500000000.0f); // value seen in sniff |
