From 49c5be6d802a1686bfc281c959b5769b5d5d9daf Mon Sep 17 00:00:00 2001 From: _manuel_ Date: Fri, 26 Mar 2010 22:13:04 -0300 Subject: Improvement in npc_mageguard_dalaranAI. --HG-- branch : trunk --- src/scripts/northrend/dalaran.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/scripts') diff --git a/src/scripts/northrend/dalaran.cpp b/src/scripts/northrend/dalaran.cpp index a5cfc6c84d4..903118444ae 100644 --- a/src/scripts/northrend/dalaran.cpp +++ b/src/scripts/northrend/dalaran.cpp @@ -74,7 +74,7 @@ struct npc_mageguard_dalaranAI : public Scripted_NoMovementAI { case 29254: if (pPlayer->GetTeam() == HORDE) // Horde unit found in Alliance area - if (Creature *pOutdoorNPC = GetClosestCreatureWithEntry(me, NPC_APPLEBOUGH_A, 32.0f)) + if (GetClosestCreatureWithEntry(me, NPC_APPLEBOUGH_A, 32.0f)) { if (me->isInBackInMap(pWho, 12.0f)) // In my line of sight, "outdoors", and behind me DoCast(pWho, SPELL_TRESPASSER_A); // Teleport the Horde unit out @@ -84,7 +84,7 @@ struct npc_mageguard_dalaranAI : public Scripted_NoMovementAI break; case 29255: if (pPlayer->GetTeam() == ALLIANCE) // Alliance unit found in Horde area - if (Creature *pOutdoorNPC = GetClosestCreatureWithEntry(me, NPC_SWEETBERRY_H, 32.0f)) + if (GetClosestCreatureWithEntry(me, NPC_SWEETBERRY_H, 32.0f)) { if (me->isInBackInMap(pWho, 12.0f)) // In my line of sight, "outdoors", and behind me DoCast(pWho, SPELL_TRESPASSER_H); // Teleport the Alliance unit out -- cgit v1.2.3