mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
Fix “an opponent gains life” costs worded as optional
This commit is contained in:
parent
41ba4c9540
commit
eca6ccd6bd
1 changed files with 85 additions and 85 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue