aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjohnholiver <johnholiver@gmail.com>2011-05-06 16:16:38 -0300
committerjohnholiver <johnholiver@gmail.com>2011-05-06 21:49:55 -0300
commit58aa146a4796aa547879f9c5a48a1fa274a9ee1b (patch)
tree33d81625bea083f275becb05850dab5a298cd33d
parent0dc68a1e50a51d534bc7b2f66a36dba0433a6742 (diff)
Core/Scripts: Remove a small debug message from Brutallus code.
-rw-r--r--src/server/scripts/EasternKingdoms/SunwellPlateau/boss_brutallus.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_brutallus.cpp b/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_brutallus.cpp
index f26c03bb142..950d5f2731d 100644
--- a/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_brutallus.cpp
+++ b/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_brutallus.cpp
@@ -155,7 +155,6 @@ public:
{
if (!Intro || IsIntro)
return;
- sLog->outError("Start Intro");
Creature *Madrigosa = Unit::GetCreature(*me, pInstance ? pInstance->GetData64(DATA_MADRIGOSA) : 0);
if (Madrigosa)
{
@@ -167,7 +166,8 @@ public:
me->SetFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_NON_ATTACKABLE);
me->Attack(Madrigosa, true);
Madrigosa->Attack(me, true);
- }else
+ }
+ else
{
//Madrigosa not found, end intro
sLog->outError("Madrigosa was not found");
@@ -180,7 +180,6 @@ public:
me->RemoveFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_NON_ATTACKABLE);
Intro = false;
IsIntro = false;
- sLog->outError("End Intro");
}
void AttackStart(Unit* pWho)