diff --git a/Mage/src/mage/abilities/effects/common/PlayTargetWithoutPayingManaEffect.java b/Mage/src/mage/abilities/effects/common/PlayTargetWithoutPayingManaEffect.java index 493822ecd58..20140ca0d86 100644 --- a/Mage/src/mage/abilities/effects/common/PlayTargetWithoutPayingManaEffect.java +++ b/Mage/src/mage/abilities/effects/common/PlayTargetWithoutPayingManaEffect.java @@ -53,6 +53,6 @@ public class PlayTargetWithoutPayingManaEffect extends OneShotEffect { @Override public String getText() { - return "you may put " + this.getSource().getTargets().get(0).getTargetName() + " from you hand onto the battlefield"; + return "you may put " + this.getSource().getTargets().get(0).getTargetName() + " from your hand onto the battlefield"; } }