Spellwild Ouphe - fixed cost reduction effect (#6698)

This commit is contained in:
Oleg Agafonov 2020-06-30 08:51:33 +04:00
parent eaae0ce256
commit 83135f347f
2 changed files with 16 additions and 61 deletions

View file

@ -46,16 +46,16 @@ public class SpellsCostModificationThatTargetSourceEffect extends CostModificati
case ANY:
break;
case YOU:
sb.append(" you");
sb.append(" you cast");
break;
case OPPONENT:
sb.append(" your opponents");
sb.append(" your opponents cast");
break;
default:
throw new IllegalArgumentException("Unsupported target controller " + this.targetController);
}
sb.append(" cast that target ").append(this.targetName);
sb.append(" that target ").append(this.targetName);
if (this.modificationAmount < 0) {
sb.append(" cost {").append(-1 * this.modificationAmount).append("} less to cast");
} else {