mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
- Converted Imperial Mask for multiplayer
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user