fixed Kiora Bests the Sea God (wrong permanent filter for chapter II);

This commit is contained in:
Oleg Agafonov 2020-01-08 22:33:41 +04:00
parent 4cb79f786a
commit ba85e267a4

View file

@ -95,7 +95,7 @@ class KioraBestsTheSeaGodEffect extends OneShotEffect {
public boolean apply(Game game, Ability source) { public boolean apply(Game game, Ability source) {
game.addEffect(new DontUntapInControllersNextUntapStepTargetEffect() game.addEffect(new DontUntapInControllersNextUntapStepTargetEffect()
.setTargetPointer(new FixedTargets(game.getBattlefield().getAllActivePermanents( .setTargetPointer(new FixedTargets(game.getBattlefield().getAllActivePermanents(
StaticFilters.FILTER_PERMANENT_CREATURE, source.getFirstTarget(), game StaticFilters.FILTER_PERMANENTS_NON_LAND, source.getFirstTarget(), game
), game)), source ), game)), source
); );
return true; return true;