- Fixed AI paying life costs twice.

This commit is contained in:
Sloth
2011-09-18 15:02:29 +00:00
parent 663be65c77
commit 529944606a

View File

@@ -101,7 +101,7 @@ public class CostPayLife extends CostPart {
if (!activator.canPayLife(c)){ if (!activator.canPayLife(c)){
return false; return false;
} }
activator.payLife(c, null); //activator.payLife(c, null);
setLastPaidAmount(c); setLastPaidAmount(c);
return true; return true;
} }