diff --git a/Source/Game/Conditions/ConditionManager.cs b/Source/Game/Conditions/ConditionManager.cs index c420575b2..87484f915 100644 --- a/Source/Game/Conditions/ConditionManager.cs +++ b/Source/Game/Conditions/ConditionManager.cs @@ -2089,7 +2089,7 @@ namespace Game if (player.GetMap().IsBattlegroundOrArena()) team = player.m_playerData.ArenaFaction; else - team = (byte)player.GetTeamId(); + team = (byte)(player.GetTeamId() == BattleGroundTeamId.Alliance ? 1 : 0); if (condition.CurrentPvpFaction - 1 != team) return false;