mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 12:52:06 -08:00
* 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:
parent
00915c65d7
commit
e49be97879
5 changed files with 28 additions and 21 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue