diff options
| author | Shauren <shauren.trinity@gmail.com> | 2018-06-16 17:24:10 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2018-06-16 17:24:10 +0200 |
| commit | 9ffabae6bf2dbec8a2755f7e018fec6dcc2668c4 (patch) | |
| tree | a54a78429dfd659fe1f3645e23be468b445f88da /src/server/scripts/Outland/Auchindoun | |
| parent | 170d10b8a92ccbe2349ed1950a3312f477cffceb (diff) | |
Scripts/Misc: Use InstanceMap* in InstanceScript instead of Map*
Diffstat (limited to 'src/server/scripts/Outland/Auchindoun')
4 files changed, 4 insertions, 7 deletions
diff --git a/src/server/scripts/Outland/Auchindoun/AuchenaiCrypts/instance_auchenai_crypts.cpp b/src/server/scripts/Outland/Auchindoun/AuchenaiCrypts/instance_auchenai_crypts.cpp index 5989799b252..5b503474505 100644 --- a/src/server/scripts/Outland/Auchindoun/AuchenaiCrypts/instance_auchenai_crypts.cpp +++ b/src/server/scripts/Outland/Auchindoun/AuchenaiCrypts/instance_auchenai_crypts.cpp @@ -18,7 +18,6 @@ #include "ScriptMgr.h" #include "auchenai_crypts.h" #include "InstanceScript.h" -#include "Map.h" class instance_auchenai_crypts : public InstanceMapScript { @@ -27,7 +26,7 @@ class instance_auchenai_crypts : public InstanceMapScript struct instance_auchenai_crypts_InstanceMapScript : public InstanceScript { - instance_auchenai_crypts_InstanceMapScript(Map* map) : InstanceScript(map) + instance_auchenai_crypts_InstanceMapScript(InstanceMap* map) : InstanceScript(map) { SetHeaders(DataHeader); SetBossNumber(EncounterCount); diff --git a/src/server/scripts/Outland/Auchindoun/ManaTombs/instance_mana_tombs.cpp b/src/server/scripts/Outland/Auchindoun/ManaTombs/instance_mana_tombs.cpp index bb54632b94c..28bd230f922 100644 --- a/src/server/scripts/Outland/Auchindoun/ManaTombs/instance_mana_tombs.cpp +++ b/src/server/scripts/Outland/Auchindoun/ManaTombs/instance_mana_tombs.cpp @@ -18,7 +18,6 @@ #include "ScriptMgr.h" #include "InstanceScript.h" #include "mana_tombs.h" -#include "Map.h" class instance_mana_tombs : public InstanceMapScript { @@ -27,7 +26,7 @@ class instance_mana_tombs : public InstanceMapScript struct instance_mana_tombs_InstanceMapScript : public InstanceScript { - instance_mana_tombs_InstanceMapScript(Map* map) : InstanceScript(map) + instance_mana_tombs_InstanceMapScript(InstanceMap* map) : InstanceScript(map) { SetHeaders(DataHeader); SetBossNumber(EncounterCount); diff --git a/src/server/scripts/Outland/Auchindoun/SethekkHalls/instance_sethekk_halls.cpp b/src/server/scripts/Outland/Auchindoun/SethekkHalls/instance_sethekk_halls.cpp index 18e6f156b44..b8ad9908d9b 100644 --- a/src/server/scripts/Outland/Auchindoun/SethekkHalls/instance_sethekk_halls.cpp +++ b/src/server/scripts/Outland/Auchindoun/SethekkHalls/instance_sethekk_halls.cpp @@ -19,7 +19,6 @@ #include "Creature.h" #include "GameObject.h" #include "InstanceScript.h" -#include "Map.h" #include "sethekk_halls.h" DoorData const doorData[] = @@ -41,7 +40,7 @@ class instance_sethekk_halls : public InstanceMapScript struct instance_sethekk_halls_InstanceMapScript : public InstanceScript { - instance_sethekk_halls_InstanceMapScript(Map* map) : InstanceScript(map) + instance_sethekk_halls_InstanceMapScript(InstanceMap* map) : InstanceScript(map) { SetHeaders(DataHeader); SetBossNumber(EncounterCount); diff --git a/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/instance_shadow_labyrinth.cpp b/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/instance_shadow_labyrinth.cpp index 528f501f0a6..8916aec3063 100644 --- a/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/instance_shadow_labyrinth.cpp +++ b/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/instance_shadow_labyrinth.cpp @@ -37,7 +37,7 @@ class instance_shadow_labyrinth : public InstanceMapScript struct instance_shadow_labyrinth_InstanceMapScript : public InstanceScript { - instance_shadow_labyrinth_InstanceMapScript(Map* map) : InstanceScript(map) + instance_shadow_labyrinth_InstanceMapScript(InstanceMap* map) : InstanceScript(map) { SetHeaders(DataHeader); SetBossNumber(EncounterCount); |
