Fix “an opponent gains life” costs worded as optional

This commit is contained in:
Fenhl 2016-04-14 11:09:38 +00:00
parent 41ba4c9540
commit eca6ccd6bd

View file

@ -36,7 +36,7 @@ public class GainLifeOpponentCost extends CostImpl {
public GainLifeOpponentCost(int amount) {
this.amount = amount;
this.text = new StringBuilder("you may have an opponent gain ").append(amount).append(" life").toString();
this.text = new StringBuilder("an opponent gains ").append(amount).append(" life").toString();
}
public GainLifeOpponentCost(GainLifeOpponentCost cost) {