Core/Achievements: Added also check for player's team. Only defenders should get this achievement

This commit is contained in:
Lopin
2011-08-24 22:56:36 +02:00
parent 35b8425656
commit f72cff430d
2 changed files with 6 additions and 2 deletions

View File

@@ -247,6 +247,9 @@ class achievement_bg_sa_defense_of_ancients : public AchievementCriteriaScript
if (!battleground)
return false;
if (player->GetTeamId() == static_cast<BattlegroundSA*>(battleground)->Attackers)
return false;
if (!static_cast<BattlegroundSA*>(battleground)->gateDestroyed);
return true;