diff options
author | ariel- <ariel-@users.noreply.github.com> | 2017-04-25 02:57:58 -0300 |
---|---|---|
committer | ariel- <ariel-@users.noreply.github.com> | 2017-04-25 02:57:58 -0300 |
commit | 85076dd799a76b889d1d22890771f4bc445fd7f8 (patch) | |
tree | bc089759afbc5872c576aab8748c104106a496a5 | |
parent | 157e9311c41a8d33f7a2e3d5381ffc09d4585c42 (diff) |
Core/Scripts: fix gaseous bloat proc (again)
- UNIT_STATE_CASTING removal not needed for movement now, but it's needed for melee attacking
-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 4c7b38f6c7f..8b738d73801 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/boss_professor_putricide.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_professor_putricide.cpp @@ -928,6 +928,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 |