more AI fixes

This commit is contained in:
BetaSteward 2011-03-07 22:59:55 -05:00
parent 0bde24648b
commit 6982608043
8 changed files with 198 additions and 135 deletions

View file

@ -53,7 +53,7 @@ public class PayLifeCost extends CostImpl<PayLifeCost> {
@Override
public boolean canPay(UUID sourceId, UUID controllerId, Game game) {
return game.getPlayer(controllerId).getLife() >= amount;
return game.getPlayer(controllerId).getLife() > amount;
}
@Override