* Look at card abilities -- improved dialog (now it's shown that card have extra abilities to call on "no" button);

This commit is contained in:
Oleg Agafonov 2019-04-23 17:09:26 +04:00
parent 00915c65d7
commit e49be97879
5 changed files with 28 additions and 21 deletions

View file

@ -2864,8 +2864,8 @@ public class TestPlayer implements Player {
}
@Override
public boolean lookAtFaceDownCard(Card card, Game game) {
return computerPlayer.lookAtFaceDownCard(card, game);
public boolean lookAtFaceDownCard(Card card, Game game, int abilitiesToActivate) {
return computerPlayer.lookAtFaceDownCard(card, game, abilitiesToActivate);
}
@Override

View file

@ -1092,7 +1092,7 @@ public class PlayerStub implements Player {
}
@Override
public boolean lookAtFaceDownCard(Card card, Game game) {
public boolean lookAtFaceDownCard(Card card, Game game, int abilitiesToActivate) {
return false;
}