diff options
author | Vincent-Michael <Vincent_Michael@gmx.de> | 2015-05-15 16:54:46 +0200 |
---|---|---|
committer | Vincent-Michael <Vincent_Michael@gmx.de> | 2015-05-15 16:54:46 +0200 |
commit | 554e657ab69a20b271cc7d0cc8ed57902ad362ac (patch) | |
tree | dafe790ea3a24d60e1681c1c75ba0d8ad4b59ba9 | |
parent | 7c4b8b0e826fd1cdab8a635225123aebd1b950c6 (diff) |
Core: Fix build
-rw-r--r-- | src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_halion.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_halion.cpp b/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_halion.cpp index bc719c7701b..f027a98da9d 100644 --- a/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_halion.cpp +++ b/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_halion.cpp @@ -1077,7 +1077,7 @@ class npc_meteor_strike : public CreatureScript _spawnCount += dataCount; } - uint32 GetData(uint32 dataType) override + uint32 GetData(uint32 dataType) const override { if (dataType == DATA_SPAWNED_FLAMES) return _spawnCount; @@ -1122,7 +1122,7 @@ class npc_meteor_strike_flame : public CreatureScript struct npc_meteor_strike_flameAI : public ScriptedAI { - npc_meteor_strikeAI(Creature* creature) : ScriptedAI(creature), + npc_meteor_strike_flameAI(Creature* creature) : ScriptedAI(creature), _instance(creature->GetInstanceScript()) { SetCombatMovement(false); |