mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 23:50:44 +01:00
*fix Lady Vashj
*fix Toxic Sporebat's Toxic Pool spell --HG-- branch : trunk
This commit is contained in:
5
sql/updates/4725_world_scripts.sql
Normal file
5
sql/updates/4725_world_scripts.sql
Normal file
@@ -0,0 +1,5 @@
|
||||
UPDATE `creature_template` SET `minlevel`='80' WHERE (`entry`='22207');
|
||||
UPDATE `creature_template` SET `maxlevel`='80' WHERE (`entry`='22207');
|
||||
UPDATE `creature_template` SET `faction_A`='14' WHERE (`entry`='22207');
|
||||
UPDATE `creature_template` SET `faction_H`='14' WHERE (`entry`='22207');
|
||||
UPDATE `creature_template` SET `flags_extra`='128' WHERE (`entry`='22207');
|
||||
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user