diff options
author | n0n4m3 <none@none> | 2010-02-15 18:23:39 +0100 |
---|---|---|
committer | n0n4m3 <none@none> | 2010-02-15 18:23:39 +0100 |
commit | bcd4a48328ddde592a440983b624a1e7d676d674 (patch) | |
tree | 3ccb9410469feb46ca9c6b41ce8228200a86a27f /src/scripts/examples/example_creature.cpp | |
parent | 922b368aac117cf38646f27c77610bea396fa488 (diff) |
Removed stupid/not needed file Spellid.h.
--HG--
branch : trunk
Diffstat (limited to 'src/scripts/examples/example_creature.cpp')
-rw-r--r-- | src/scripts/examples/example_creature.cpp | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/src/scripts/examples/example_creature.cpp b/src/scripts/examples/example_creature.cpp index 41cc0217132..549ab338401 100644 --- a/src/scripts/examples/example_creature.cpp +++ b/src/scripts/examples/example_creature.cpp @@ -22,7 +22,6 @@ SDCategory: Script Examples EndScriptData */ #include "ScriptedPch.h" -#include "SpellId.h" // **** This script is designed as an example for others to build on **** // **** Please modify whatever you'd like to as this script is only for developement **** @@ -58,13 +57,13 @@ enum Spells { // List of spells. // Not required to define them in this way, but will make it easier to maintain in case spellId change - SPELL_BUFF = SPELL_INCREASED_STAMINA_25661, - SPELL_ONE = SPELL_PUMMEL_12555, - SPELL_ONE_ALT = SPELL_POISON_BOLT_VOLLEY_24099, - SPELL_TWO = SPELL_FROST_HOLD_10017, - SPELL_THREE = SPELL_KNOCKBACK_26027, - SPELL_FRENZY = SPELL_FRENZY_23537, - SPELL_BERSERK = SPELL_BERSERK_32965, + SPELL_BUFF = 25661, + SPELL_ONE = 12555, + SPELL_ONE_ALT = 24099, + SPELL_TWO = 10017, + SPELL_THREE = 26027, + SPELL_FRENZY = 23537, + SPELL_BERSERK = 32965, }; enum eEnums |