mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
fixed Run Away Together not resolving
This commit is contained in:
parent
720180ed93
commit
928058a192
1 changed files with 2 additions and 2 deletions
|
@ -70,8 +70,8 @@ class RunAwayTogetherTarget extends TargetCreaturePermanent {
|
|||
.stream()
|
||||
.map(game::getPermanent)
|
||||
.filter(Objects::nonNull)
|
||||
.noneMatch(permanent -> creature.getId().equals(permanent.getId())
|
||||
|| creature.isControlledBy(permanent.getControllerId())
|
||||
.noneMatch(permanent -> !creature.getId().equals(permanent.getId())
|
||||
&& creature.isControlledBy(permanent.getControllerId())
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue