- AI's checkRemoveCounterCost was way too conservative (which mostly prevented the usage of ultimate Planeswalker abilities).

This commit is contained in:
Sloth
2011-10-10 13:44:40 +00:00
parent 5843cb6882
commit 0f0e2bfaa6

View File

@@ -15,8 +15,8 @@ import forge.gui.input.Input;
public class CostUtil {
static private Random r = new Random();
static private double P1P1Percent = .1;
static private double OtherPercent = .25;
static private double P1P1Percent = .25;
static private double OtherPercent = .9;
static public boolean checkSacrificeCost(Cost cost, Card source){
for(CostPart part : cost.getCostParts()){