- Improved AI of Soulbond.

This commit is contained in:
Sloth
2012-10-03 11:52:08 +00:00
parent 5fdc29a697
commit 8eaeab146c
2 changed files with 1 additions and 3 deletions

View File

@@ -342,7 +342,7 @@ public final class AbilityFactoryBond {
}
} else {
// TODO - Pick best creature instead of just the first on the list
partner = cards.get(0);
partner = CardFactoryUtil.getBestCreatureAI(cards);
}
// pair choices together

View File

@@ -23,8 +23,6 @@ import java.util.Map;
import java.util.Random;
import java.util.TreeMap;
import org.apache.commons.lang3.tuple.Pair;
import com.google.common.base.Predicate;
import com.google.common.base.Predicates;
import com.google.common.collect.Iterables;