From b157b991158fc3cac8bc5791dd1d01c81f4be481 Mon Sep 17 00:00:00 2001 From: Ovahlord Date: Tue, 19 Mar 2019 15:39:49 +0100 Subject: [PATCH] Scripts/ZA: fixed another startup error caused by wrong script name assignment --- src/server/scripts/EasternKingdoms/ZulAman/boss_hexlord.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/server/scripts/EasternKingdoms/ZulAman/boss_hexlord.cpp b/src/server/scripts/EasternKingdoms/ZulAman/boss_hexlord.cpp index 1439e12fa00..acc45db21b2 100644 --- a/src/server/scripts/EasternKingdoms/ZulAman/boss_hexlord.cpp +++ b/src/server/scripts/EasternKingdoms/ZulAman/boss_hexlord.cpp @@ -37,9 +37,9 @@ enum Events { }; -struct boss_hex_lord_malacrass : public BossAI +struct boss_hexlord_malacrass : public BossAI { - boss_hex_lord_malacrass(Creature* creature) : BossAI(creature, DATA_HEXLORD_MALACRASS) + boss_hexlord_malacrass(Creature* creature) : BossAI(creature, DATA_HEXLORD_MALACRASS) { Initialize(); } @@ -76,5 +76,5 @@ struct boss_hex_lord_malacrass : public BossAI void AddSC_boss_hex_lord_malacrass() { - RegisterZulAamanCreatureAI(boss_hex_lord_malacrass); + RegisterZulAamanCreatureAI(boss_hexlord_malacrass); }