forked from External/mage
[OTJ][BIG] Various Fixes (mostly Text)
This commit is contained in:
parent
ea0a2c8528
commit
73287e3878
23 changed files with 39 additions and 26 deletions
|
|
@ -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");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue