- Fixed Liliana of the Veil.

- Fixed AI choosing logic of AF TwoPiles.
This commit is contained in:
Sloth
2012-12-03 08:39:09 +00:00
parent f9d3003d35
commit cbd59a3241
2 changed files with 2 additions and 2 deletions

View File

@@ -233,7 +233,7 @@ public class TwoPilesEffect extends SpellEffect {
// for now, this assumes that the outcome will be bad
// TODO: This should really have a ChooseLogic param to
// figure this out
pile1WasChosen = cmc1 >= cmc2;
pile1WasChosen = cmc1 <= cmc2;
if (pile1WasChosen) {
JOptionPane.showMessageDialog(null, "Computer chooses the Pile 1", "",
JOptionPane.INFORMATION_MESSAGE);