mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 03:51:58 -08: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
Add a link
Reference in a new issue