diff --git a/Mage.Server/src/main/java/mage/server/util/SystemUtil.java b/Mage.Server/src/main/java/mage/server/util/SystemUtil.java index 9cc3efdf8cf..ff3c1667699 100644 --- a/Mage.Server/src/main/java/mage/server/util/SystemUtil.java +++ b/Mage.Server/src/main/java/mage/server/util/SystemUtil.java @@ -422,7 +422,7 @@ public final class SystemUtil { }); // TODO: set priority for us? Choice choice = new ChoiceImpl(); - choice.setMessage("Choose playable ability to active by opponent " + opponent.getName()); + choice.setMessage("Choose playable ability to activate by opponent " + opponent.getName()); choice.setKeyChoices(choices); if (feedbackPlayer.choose(Outcome.Detriment, choice, game) && choice.getChoiceKey() != null) { String needId = choice.getChoiceKey(); diff --git a/Mage.Sets/src/mage/cards/f/FlickerOfFate.java b/Mage.Sets/src/mage/cards/f/FlickerOfFate.java index ff89b167fdf..4cd69eb49a1 100644 --- a/Mage.Sets/src/mage/cards/f/FlickerOfFate.java +++ b/Mage.Sets/src/mage/cards/f/FlickerOfFate.java @@ -30,7 +30,7 @@ public final class FlickerOfFate extends CardImpl { // Exile target creature or enchantment, then return it to the battlefield under its owner's control. this.getSpellAbility().addEffect(new ExileTargetForSourceEffect()); - this.getSpellAbility().addEffect(new ReturnToBattlefieldUnderOwnerControlTargetEffect(true)); + this.getSpellAbility().addEffect(new ReturnToBattlefieldUnderOwnerControlTargetEffect(false)); this.getSpellAbility().addTarget(new TargetPermanent(filter)); }