diff --git a/Mage/src/main/java/mage/abilities/effects/common/PutCardFromHandOntoBattlefieldEffect.java b/Mage/src/main/java/mage/abilities/effects/common/PutCardFromHandOntoBattlefieldEffect.java index e0720b20d6c..5b07d886218 100644 --- a/Mage/src/main/java/mage/abilities/effects/common/PutCardFromHandOntoBattlefieldEffect.java +++ b/Mage/src/main/java/mage/abilities/effects/common/PutCardFromHandOntoBattlefieldEffect.java @@ -82,9 +82,9 @@ public class PutCardFromHandOntoBattlefieldEffect extends OneShotEffect { } if (useTargetController) { - return "that player may put " + filter.getMessage() + " from their hand onto the battlefield"; + return "that player may put " + filter.getMessage() + " from their hand onto the battlefield" + (this.tapped ? " tapped" : ""); } else { - return "you may put " + filter.getMessage() + " from your hand onto the battlefield"; + return "you may put " + filter.getMessage() + " from your hand onto the battlefield" + (this.tapped ? " tapped" : ""); } } }