mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
fixed a test failure
This commit is contained in:
parent
e59f14490e
commit
8e3c04cac2
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ public enum NotMyTurnCondition implements Condition {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean apply(Game game, Ability source) {
|
public boolean apply(Game game, Ability source) {
|
||||||
return source.isControlledBy(game.getActivePlayerId());
|
return !source.isControlledBy(game.getActivePlayerId());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue