- Converted Imperial Mask for multiplayer

This commit is contained in:
swordshine
2014-05-10 12:25:09 +00:00
parent 9b04597c54
commit b2ba987fe3
2 changed files with 7 additions and 1 deletions

View File

@@ -2337,6 +2337,10 @@ public class Player extends GameEntity implements Comparable<Player> {
if (this.equals(sourceController) || !this.isOpponentOf(sourceController)) {
return false;
}
} else if (property.equals("Allies")) {
if (this.equals(sourceController) || this.isOpponentOf(sourceController)) {
return false;
}
} else if (property.equals("NonActive")) {
if (this.equals(game.getPhaseHandler().getPlayerTurn())) {
return false;