diff options
-rw-r--r-- | src/game/Wintergrasp.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/game/Wintergrasp.cpp b/src/game/Wintergrasp.cpp index 69c93b28cc0..c52b7c3b7ae 100644 --- a/src/game/Wintergrasp.cpp +++ b/src/game/Wintergrasp.cpp @@ -801,6 +801,7 @@ bool OPvPWintergrasp::UpdateCreatureInfo(Creature *creature) const return false; case CREATURE_GUARD: case CREATURE_SPECIAL: + { TeamPairMap::const_iterator itr = m_creEntryPair.find(creature->GetCreatureData()->id); if (itr != m_creEntryPair.end()) { @@ -808,6 +809,7 @@ bool OPvPWintergrasp::UpdateCreatureInfo(Creature *creature) const RespawnCreatureIfNeeded(creature, entry); } return false; + } default: return false; } |