Remove WorldUtils.AreMutualAllies

This commit is contained in:
abcdefg30
2020-11-14 13:00:10 +01:00
committed by Matthias Mailänder
parent d6c0926856
commit e7e50cc101
4 changed files with 5 additions and 15 deletions

View File

@@ -87,10 +87,5 @@ namespace OpenRA
}
}
}
public static bool AreMutualAllies(Player a, Player b)
{
return a.RelationshipWith(b) == PlayerRelationship.Ally && b.RelationshipWith(a) == PlayerRelationship.Ally;
}
}
}