- Fixed AI not paying CostRemoveCounter costs.

This commit is contained in:
Sloth
2013-04-14 08:31:09 +00:00
parent d00599e774
commit 40fd711421

View File

@@ -391,6 +391,7 @@ public class CostRemoveCounter extends CostPartWithList {
System.out.println("Not enough " + this.counter + " on " + source.getName()); System.out.println("Not enough " + this.counter + " on " + source.getName());
return null; return null;
} }
this.cntRemoved = c;
return new PaymentDecision(source); return new PaymentDecision(source);
} }
} }