diff options
Diffstat (limited to 'src/scripts/northrend/dalaran.cpp')
-rw-r--r-- | src/scripts/northrend/dalaran.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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 |