* Long-Term Plans and Volrath's Dungeon - fixed that it shows card name in game logs to other players (#7179);

This commit is contained in:
Oleg Agafonov 2020-11-18 12:44:58 +04:00
parent d1abfb9255
commit 39a556f233
17 changed files with 24 additions and 21 deletions

View file

@ -2804,8 +2804,8 @@ public class TestPlayer implements Player {
}
@Override
public boolean putCardOnTopXOfLibrary(Card card, Game game, Ability source, int xFromTheTop) {
return computerPlayer.putCardOnTopXOfLibrary(card, game, source, xFromTheTop);
public boolean putCardOnTopXOfLibrary(Card card, Game game, Ability source, int xFromTheTop, boolean withName) {
return computerPlayer.putCardOnTopXOfLibrary(card, game, source, xFromTheTop, withName);
}
@Override

View file

@ -904,7 +904,7 @@ public class PlayerStub implements Player {
}
@Override
public boolean putCardOnTopXOfLibrary(Card card, Game game, Ability source, int xFromTheTop) {
public boolean putCardOnTopXOfLibrary(Card card, Game game, Ability source, int xFromTheTop, boolean withName) {
return true;
}