mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
[KHM] fixed an issue with Arni Brokenbrow not counting all other creatures on the battlefield
This commit is contained in:
parent
950f1c9731
commit
b45c176a84
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ class ArniBrokenbrowEffect extends OneShotEffect {
|
|||
.stream()
|
||||
.filter(Objects::nonNull)
|
||||
.filter(permanent -> !permanent.getId().equals(source.getSourceId())
|
||||
&& permanent.getZoneChangeCounter(game) != source.getSourceObjectZoneChangeCounter())
|
||||
|| permanent.getZoneChangeCounter(game) != source.getSourceObjectZoneChangeCounter())
|
||||
.map(MageObject::getPower)
|
||||
.mapToInt(MageInt::getValue)
|
||||
.max()
|
||||
|
|
Loading…
Reference in a new issue