From 7a70b4ce391cb2d34e97bc6dce96fc182ae2dc49 Mon Sep 17 00:00:00 2001 From: drdev Date: Sat, 18 Oct 2014 01:29:53 +0000 Subject: [PATCH] Fix so scry card shows the correct art --- .../src/main/java/forge/player/PlayerControllerHuman.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/forge-gui/src/main/java/forge/player/PlayerControllerHuman.java b/forge-gui/src/main/java/forge/player/PlayerControllerHuman.java index 3849edf0f66..035fffb4abc 100644 --- a/forge-gui/src/main/java/forge/player/PlayerControllerHuman.java +++ b/forge-gui/src/main/java/forge/player/PlayerControllerHuman.java @@ -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"}); }