diff --git a/Mage.Sets/src/mage/sets/scarsofmirrodin/RustTick.java b/Mage.Sets/src/mage/sets/scarsofmirrodin/RustTick.java index 97980649dd5..f6777fa2884 100644 --- a/Mage.Sets/src/mage/sets/scarsofmirrodin/RustTick.java +++ b/Mage.Sets/src/mage/sets/scarsofmirrodin/RustTick.java @@ -179,17 +179,8 @@ class RustTickSelfRestrictionEffect extends RestrictionEffect abilities = new HashSet(); - abilities.add("Yes"); - abilities.add("No"); - abilityChoice.setChoices(abilities); - - Player playerControls = game.getPlayer(permanent.getControllerId()); - playerControls.choose(Constants.Outcome.Neutral, abilityChoice, game); - - return abilityChoice.getChoice() != null && abilityChoice.getChoice().equals("Yes"); + Player player = game.getPlayer(permanent.getControllerId()); + return player != null && player.chooseUse(Constants.Outcome.Benefit, "Untap Rust Tick?", game); } @Override