mirror of
https://github.com/magefree/mage.git
synced 2026-01-23 11:49:56 -08:00
Fixed couple compile problems found in Eclipse
This commit is contained in:
parent
7292a1625c
commit
fb810b1774
4 changed files with 4 additions and 4 deletions
|
|
@ -105,7 +105,7 @@ class CumulativeUpkeepEffect extends OneShotEffect {
|
|||
if(cumulativeCost instanceof ManaCost){
|
||||
ManaCostsImpl totalCost = new ManaCostsImpl();
|
||||
for(int i = 0 ; i < ageCounter; i++){
|
||||
totalCost.add(cumulativeCost.copy());
|
||||
totalCost.add((ManaCost) cumulativeCost.copy());
|
||||
}
|
||||
if (player.chooseUse(Outcome.Benefit, "Pay " + totalCost.getText() + "?", game)) {
|
||||
totalCost.clearPaid();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue