diff --git a/Mage.Sets/src/mage/cards/r/ReplicationSpecialist.java b/Mage.Sets/src/mage/cards/r/ReplicationSpecialist.java index 8369c957d90..cf6a8f285a3 100644 --- a/Mage.Sets/src/mage/cards/r/ReplicationSpecialist.java +++ b/Mage.Sets/src/mage/cards/r/ReplicationSpecialist.java @@ -42,8 +42,12 @@ public final class ReplicationSpecialist extends CardImpl { // Whenever a nontoken artifact enters the battlefield under your control, you may pay {1}{U}. If you do, create a token that's a copy of that artifact. this.addAbility(new EntersBattlefieldControlledTriggeredAbility( - Zone.BATTLEFIELD, new DoIfCostPaid(new CreateTokenCopyTargetEffect(), new ManaCostsImpl<>("{1}{U}")), - filter, false, SetTargetPointer.PERMANENT, null + Zone.BATTLEFIELD, + new DoIfCostPaid( + new CreateTokenCopyTargetEffect() + .setText("create a token that's a copy of that artifact"), + new ManaCostsImpl<>("{1}{U}") + ), filter, false, SetTargetPointer.PERMANENT, null )); }