aboutsummaryrefslogtreecommitdiff
path: root/src/server/scripts/EasternKingdoms/Karazhan
diff options
context:
space:
mode:
authorDuarte Duarte <dnpd.dd@gmail.com>2016-12-01 01:51:07 +0000
committerGitHub <noreply@github.com>2016-12-01 01:51:07 +0000
commit7eb4512eee5fc04994e2aa55126ccc97a8393506 (patch)
tree7adf78e39761658ce34224dca58b0b09b84dfdd5 /src/server/scripts/EasternKingdoms/Karazhan
parentc6bc131b36dea28e3a134fdb08052f4b48891792 (diff)
Scripts: Minimize duplicated enum names in header files (#18346)
This reduces the number of cache resets with the Zapcc compiler Standard followed is instance/raid TLA + DataTypes/CreaturesIds/etc
Diffstat (limited to 'src/server/scripts/EasternKingdoms/Karazhan')
-rw-r--r--src/server/scripts/EasternKingdoms/Karazhan/karazhan.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/server/scripts/EasternKingdoms/Karazhan/karazhan.h b/src/server/scripts/EasternKingdoms/Karazhan/karazhan.h
index 05de9e43a91..65970af50dc 100644
--- a/src/server/scripts/EasternKingdoms/Karazhan/karazhan.h
+++ b/src/server/scripts/EasternKingdoms/Karazhan/karazhan.h
@@ -23,7 +23,7 @@
uint32 const EncounterCount = 12;
-enum DataTypes
+enum KZDataTypes
{
DATA_ATTUMEN = 0,
DATA_MOROES = 1,
@@ -56,14 +56,14 @@ enum DataTypes
DATA_GO_SIDE_ENTRANCE_DOOR = 29
};
-enum OperaEvents
+enum KZOperaEvents
{
EVENT_OZ = 1,
EVENT_HOOD = 2,
EVENT_RAJ = 3
};
-enum MiscCreatures
+enum KZMiscCreatures
{
NPC_HYAKISS_THE_LURKER = 16179,
NPC_ROKAD_THE_RAVAGER = 16181,
@@ -83,7 +83,7 @@ enum MiscCreatures
NPC_KILREK = 17229
};
-enum GameObjectIds
+enum KZGameObjectIds
{
GO_STAGE_CURTAIN = 183932,
GO_STAGE_DOOR_LEFT = 184278,
@@ -99,7 +99,7 @@ enum GameObjectIds
GO_DUST_COVERED_CHEST = 185119
};
-enum Misc
+enum KZMisc
{
OPTIONAL_BOSS_REQUIRED_DEATH_COUNT = 50
};