- A better fix for Scry 1.

This commit is contained in:
Agetian
2014-07-21 07:19:16 +00:00
parent 83e914b00c
commit 28364f97ec

View File

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