diff --git a/forge-gui/src/main/java/forge/player/PlayerControllerHuman.java b/forge-gui/src/main/java/forge/player/PlayerControllerHuman.java index 283f1db12b6..4791e3a1c6e 100644 --- a/forge-gui/src/main/java/forge/player/PlayerControllerHuman.java +++ b/forge-gui/src/main/java/forge/player/PlayerControllerHuman.java @@ -607,7 +607,12 @@ public class PlayerControllerHuman extends PlayerController { @Override public boolean willPutCardOnTop(final Card c) { final CardView view = CardView.get(c); - return SGuiDialog.confirm(view, "Put " + view + " on the top or bottom of your library?", new String[]{"Top", "Bottom"}); + + tempShowCard(c); + boolean result = SGuiDialog.confirm(view, "Put " + view + " on the top or bottom of your library?", new String[]{"Top", "Bottom"}); + endTempShowCards(); + + return result; } @Override