[KHM] fixed an issue with Arni Brokenbrow not counting all other creatures on the battlefield

This commit is contained in:
Evan Kranzler 2021-01-31 20:41:59 -05:00
parent 950f1c9731
commit b45c176a84

View file

@ -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()