mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 20:59:14 -08:00
Merge pull request #901 from bigzwine/fixcompileprobs
Fixed couple compile problems found in Eclipse
This commit is contained in:
commit
c0db6dfdc8
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