mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 03:38:01 +00:00
- Fixed Liliana of the Veil.
- Fixed AI choosing logic of AF TwoPiles.
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user