mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +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()
|
.stream()
|
||||||
.map(game::getPermanent)
|
.map(game::getPermanent)
|
||||||
.filter(Objects::nonNull)
|
.filter(Objects::nonNull)
|
||||||
.noneMatch(permanent -> creature.getId().equals(permanent.getId())
|
.noneMatch(permanent -> !creature.getId().equals(permanent.getId())
|
||||||
|| creature.isControlledBy(permanent.getControllerId())
|
&& creature.isControlledBy(permanent.getControllerId())
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue