Fix so scry card shows the correct art

This commit is contained in:
drdev
2014-10-18 01:29:53 +00:00
parent cd9a333bd0
commit 7a70b4ce39

View File

@@ -596,9 +596,7 @@ public class PlayerControllerHuman extends PlayerController {
@Override
public boolean willPutCardOnTop(final Card c) {
final PaperCard pc = FModel.getMagicDb().getCommonCards().getCard(c.getName());
final Card c1 = (pc != null ? Card.fromPaperCard(pc, null) : c);
final CardView view = CardView.get(c1);
final CardView view = CardView.get(c);
return SGuiDialog.confirm(view, "Put " + view + " on the top or bottom of your library?", new String[]{"Top", "Bottom"});
}