diff --git a/Mage/src/mage/abilities/effects/RestrictionUntapNotMoreThanEffect.java b/Mage/src/mage/abilities/effects/RestrictionUntapNotMoreThanEffect.java index 324998f2b60..9bda2189408 100644 --- a/Mage/src/mage/abilities/effects/RestrictionUntapNotMoreThanEffect.java +++ b/Mage/src/mage/abilities/effects/RestrictionUntapNotMoreThanEffect.java @@ -42,7 +42,7 @@ import mage.players.Player; */ public abstract class RestrictionUntapNotMoreThanEffect extends ContinuousEffectImpl { - private int number; + private final int number; private FilterControlledPermanent filter; public RestrictionUntapNotMoreThanEffect(Duration duration, int number, FilterControlledPermanent filter) { diff --git a/Mage/src/mage/players/PlayerImpl.java b/Mage/src/mage/players/PlayerImpl.java index 6d5d6abb9c5..6663eecc517 100644 --- a/Mage/src/mage/players/PlayerImpl.java +++ b/Mage/src/mage/players/PlayerImpl.java @@ -1374,7 +1374,7 @@ public abstract class PlayerImpl implements Player, Serializable { } sb.append(")"); filter.setMessage(sb.toString()); - Target target = new TargetPermanent(filter); + Target target = new TargetPermanent(1, 1, filter, true); if (!this.chooseTarget(Outcome.Untap, target, ability, game)) { // player canceled, go on with the next effect (if no other effect available, this effect will be active again) playerCanceledSelection = true;