Removed dispay of card ID for looked at cards to prevent unfair use of card identity.

This commit is contained in:
LevelX2 2015-06-22 15:31:15 +02:00
parent c6528b9d73
commit 78188d6f24
5 changed files with 19 additions and 5 deletions

View file

@ -1127,7 +1127,12 @@ public class TestPlayer implements Player {
public void lookAtCards(String name, Cards cards, Game game) {
computerPlayer.lookAtCards(name, cards, game);
}
@Override
public void lookAtCards(String name, Card card, Game game) {
computerPlayer.lookAtCards(name, card, game);
}
@Override
public void phasing(Game game) {
computerPlayer.phasing(game);