Fix Cultivate (and like cards) effect prompt text

This commit is contained in:
PurpleCrowbar 2025-09-09 17:32:43 +01:00
parent bf6a7684d6
commit c03f3502df

View file

@ -26,7 +26,7 @@ public class SearchLibraryPutOntoBattlefieldTappedRestInHandEffect extends Searc
super(target, Outcome.PutLandInPlay); super(target, Outcome.PutLandInPlay);
staticText = "search your library for " + target.getDescription() + staticText = "search your library for " + target.getDescription() +
", reveal those cards, put " + CardUtil.numberToText(numToBattlefield) + " onto the battlefield tapped and the other into your hand, then shuffle"; ", reveal those cards, put " + CardUtil.numberToText(numToBattlefield) + " onto the battlefield tapped and the other into your hand, then shuffle";
this.filter = new FilterCard((numToBattlefield > 1 ? "cards" : "card") + "to put on the battlefield tapped"); this.filter = new FilterCard((numToBattlefield > 1 ? "cards" : "card") + " to put on the battlefield tapped");
this.numToBattlefield = numToBattlefield; this.numToBattlefield = numToBattlefield;
} }