followup text fixes

This commit is contained in:
xenohedron 2024-11-29 02:47:51 -05:00
parent 8ef7d7816e
commit 6f43e76c9e
2 changed files with 4 additions and 2 deletions

View file

@ -32,7 +32,7 @@ public final class GeyserDrake extends CardImpl {
// As long as it's not your turn, spells you cast cost {1} less to cast.
this.addAbility(new SimpleStaticAbility(new ConditionalCostModificationEffect(
new SpellsCostReductionControllerEffect(StaticFilters.FILTER_CARD, 1),
NotMyTurnCondition.instance, "as long as it's not your turn, " +
NotMyTurnCondition.instance, "during turns other than yours, " +
"spells you cast cost {1} less to cast"
)));
}

View file

@ -139,7 +139,9 @@ public class SacrificeAllEffect extends OneShotEffect {
sb.append(' ');
sb.append(filter.getMessage());
}
sb.append(" of their choice");
if (!filter.getMessage().contains("with")) {
sb.append(" of their choice");
}
staticText = sb.toString();
}