mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 11:32:00 -08:00
* 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:
parent
d1abfb9255
commit
39a556f233
17 changed files with 24 additions and 21 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue