diff options
| author | Bootz <Stage6Dev@EMPulseGaming.com> | 2012-01-26 02:55:23 -0600 |
|---|---|---|
| committer | Bootz <Stage6Dev@EMPulseGaming.com> | 2012-01-26 02:55:23 -0600 |
| commit | 6c3bdb1f7097102ba250aab553e71813ff3478d1 (patch) | |
| tree | 3889b0adb38f1898c168e5210a77dc13bdaa20c5 /src | |
| parent | 74441b12ec8da18212a49b5861b0776ffc06324b (diff) | |
Scripts/EasternKingdoms: MoltenCore
* Fixed Enums in defines.
Diffstat (limited to 'src')
| -rw-r--r-- | src/server/scripts/EasternKingdoms/MoltenCore/molten_core.cpp | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/src/server/scripts/EasternKingdoms/MoltenCore/molten_core.cpp b/src/server/scripts/EasternKingdoms/MoltenCore/molten_core.cpp index eafe55d3821..801a11fbfc8 100644 --- a/src/server/scripts/EasternKingdoms/MoltenCore/molten_core.cpp +++ b/src/server/scripts/EasternKingdoms/MoltenCore/molten_core.cpp @@ -30,16 +30,19 @@ EndContentData */ #include "ScriptPCH.h" #include "ScriptedSimpleAI.h" -#define SPELL_CONE_OF_FIRE 19630 -#define SPELL_BITE 19771 +enum Spells +{ + SPELL_CONE_OF_FIRE = 19630, + SPELL_BITE = 19771, -//Random Debuff (each hound has only one of these) -#define SPELL_GROUND_STOMP 19364 -#define SPELL_ANCIENT_DREAD 19365 -#define SPELL_CAUTERIZING_FLAMES 19366 -#define SPELL_WITHERING_HEAT 19367 -#define SPELL_ANCIENT_DESPAIR 19369 -#define SPELL_ANCIENT_HYSTERIA 19372 + //Random Debuff (each hound has only one of these) + SPELL_GROUND_STOMP = 19364, + SPELL_ANCIENT_DREAD = 19365, + SPELL_CAUTERIZING_FLAMES = 19366, + SPELL_WITHERING_HEAT = 19367, + SPELL_ANCIENT_DESPAIR = 19369, + SPELL_ANCIENT_HYSTERIA = 19372 +}; class mob_ancient_core_hound : public CreatureScript { @@ -75,7 +78,6 @@ public: return ai; } - }; void AddSC_molten_core() |
