[OTJ][BIG] Various Fixes (mostly Text)

This commit is contained in:
Susucre 2024-04-03 22:24:53 +02:00
parent ea0a2c8528
commit 73287e3878
23 changed files with 39 additions and 26 deletions

View file

@ -47,13 +47,16 @@ public class SpellsCostIncreasingAllEffect extends CostModificationEffectImpl {
private void setText() {
StringBuilder sb = new StringBuilder();
sb.append(filter.getMessage());
String filterMessage = filter.getMessage();
sb.append(filterMessage);
switch (this.targetController) {
case YOU:
sb.append(" you cast");
break;
case OPPONENT:
sb.append(" your opponents cast");
if (!filterMessage.contains("your opponents cast")) {
sb.append(" your opponents cast");
}
break;
case ACTIVE:
sb.append(" the active player casts");