diff options
author | Rat <none@none> | 2009-08-03 01:12:05 +0200 |
---|---|---|
committer | Rat <none@none> | 2009-08-03 01:12:05 +0200 |
commit | f166fa145f637e01ca5efd68f495c6dc1b86ca21 (patch) | |
tree | 0097bb560cf5cba3e14a8ca598c0be07b5ff70a0 /src | |
parent | 249b2e43819e7e87c78657cf00227a7a9fe12c49 (diff) |
*fix Lady Vashj
*fix Toxic Sporebat's Toxic Pool spell
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_lady_vashj.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_lady_vashj.cpp b/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_lady_vashj.cpp index 28e8a4d5e6e..d3e890e9a40 100644 --- a/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_lady_vashj.cpp +++ b/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_lady_vashj.cpp @@ -287,11 +287,11 @@ struct TRINITY_DLL_DECL boss_lady_vashjAI : public ScriptedAI //if(who->HasStealthAura()) // who->RemoveSpellsCausingAura(SPELL_AURA_MOD_STEALTH); - if(Phase != 2) - AttackStart(who); - - if(!m_creature->isInCombat()) + if(!m_creature->isInCombat())//AttackStart() sets UNIT_FLAG_IN_COMBAT, so this msut be before attacking StartEvent(); + + if(Phase != 2) + AttackStart(who); } } } |