diff options
| author | megamage <none@none> | 2009-05-23 01:43:46 -0500 |
|---|---|---|
| committer | megamage <none@none> | 2009-05-23 01:43:46 -0500 |
| commit | ec24442af402d7ace4e74bb9ce5e36db89656f79 (patch) | |
| tree | 62ac885dc8336d7ab8b6db3316ba133592cde2fa /src/bindings | |
| parent | a417e71e15b88f39f53c80d84031bffde95971a2 (diff) | |
*Fix rock shards spell for archavon script.
--HG--
branch : trunk
Diffstat (limited to 'src/bindings')
| -rw-r--r-- | src/bindings/scripts/scripts/zone/vault_of_archavon/boss_archavon.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/bindings/scripts/scripts/zone/vault_of_archavon/boss_archavon.cpp b/src/bindings/scripts/scripts/zone/vault_of_archavon/boss_archavon.cpp index 0df0964a93f..26d120479ea 100644 --- a/src/bindings/scripts/scripts/zone/vault_of_archavon/boss_archavon.cpp +++ b/src/bindings/scripts/scripts/zone/vault_of_archavon/boss_archavon.cpp @@ -14,7 +14,7 @@ UPDATE `creature_template` SET `ScriptName`='mob_archavon_warder' WHERE `entry`= #define EMOTE_ENRAGE -1533022 //Spells Archavon -#define SPELL_ROCK_SHARDS HEROIC(58695,60884) //Instant -- Hurls a jagged rock shard, inflicting 707 to 793 Physical damage to any enemies within 5 of the target. +#define SPELL_ROCK_SHARDS 58678 #define SPELL_CRUSHING_LEAP HEROIC(58960,60894)//Instant (10-80yr range) -- Leaps at an enemy, inflicting 8000 Physical damage, knocking all nearby enemies away, and creating a cloud of choking debris. #define SPELL_STOMP HEROIC(58663,60880) #define SPELL_IMPALE HEROIC(58666,60882) //Lifts an enemy off the ground with a spiked fist, inflicting 47125 to 52875 Physical damage and 9425 to 10575 additional damage each second for 8 sec. @@ -81,6 +81,9 @@ struct TRINITY_DLL_DECL boss_archavonAI : public ScriptedAI events.Update(diff); + if(me->hasUnitState(UNIT_STAT_CASTING)) + return; + while(uint32 eventId = events.ExecuteEvent()) { switch(eventId) |
