- Scry 1 will now correctly show the card it's inquiring about to the player (in the card detail/picture boxes).

This commit is contained in:
Agetian
2014-07-21 07:14:48 +00:00
parent 7131a97324
commit 83e914b00c

View File

@@ -436,7 +436,8 @@ public class PlayerControllerHuman extends PlayerController {
@Override
public boolean willPutCardOnTop(Card c) {
return SGuiDialog.confirm(c, "Where will you put " + c.getName() + " in your library", new String[]{"Top", "Bottom"});
Card c1 = Card.fromPaperCard(FModel.getMagicDb().getCommonCards().getCard(c.getName()), null);
return SGuiDialog.confirm(c1, "Where will you put " + c1.getName() + " in your library", new String[]{"Top", "Bottom"});
}
@Override