mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 12:52:06 -08:00
Typo fix
This commit is contained in:
parent
12fc854777
commit
b64a75aa4b
6 changed files with 11 additions and 11 deletions
|
|
@ -1994,7 +1994,7 @@ public class TestPlayer implements Player {
|
|||
}
|
||||
|
||||
@Override
|
||||
public int announceXMana(int min, int max, int multilier, String message, Game game, Ability ability) {
|
||||
public int announceXMana(int min, int max, int multiplier, String message, Game game, Ability ability) {
|
||||
if (!choices.isEmpty()) {
|
||||
for (String choice : choices) {
|
||||
if (choice.startsWith("X=")) {
|
||||
|
|
@ -2006,7 +2006,7 @@ public class TestPlayer implements Player {
|
|||
}
|
||||
|
||||
this.chooseStrictModeFailed(game, getInfo(ability) + "; " + message);
|
||||
return computerPlayer.announceXMana(min, max, multilier, message, game, ability);
|
||||
return computerPlayer.announceXMana(min, max, multiplier, message, game, ability);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -912,7 +912,7 @@ public class PlayerStub implements Player {
|
|||
}
|
||||
|
||||
@Override
|
||||
public int announceXMana(int min, int max, int multilier, String message, Game game, Ability ability) {
|
||||
public int announceXMana(int min, int max, int multiplier, String message, Game game, Ability ability) {
|
||||
return min;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue