mirror of
https://github.com/correl/mage.git
synced 2025-04-12 17:00:08 -09:00
Changes to try and better handle X mana costs with minimum X values with AI decisions #4906
This commit is contained in:
parent
ceb41fca33
commit
0bf78830de
1 changed files with 2 additions and 2 deletions
|
@ -890,12 +890,12 @@ public class PlayerStub implements Player {
|
|||
|
||||
@Override
|
||||
public int announceXMana(int min, int max, String message, Game game, Ability ability) {
|
||||
return 0;
|
||||
return min;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int announceXCost(int min, int max, String message, Game game, Ability ability, VariableCost variableCost) {
|
||||
return 0;
|
||||
return min;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Reference in a new issue