* Intet, the Dreamer - Improved handling to look at face down cards exiled with Intet. Works now also if Intet has left the battlefield.

This commit is contained in:
LevelX2 2015-08-19 00:59:05 +02:00
parent 618033c947
commit 9df993bd3a
11 changed files with 276 additions and 208 deletions

View file

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