From e6ca314ddb5d6f67da8b524bba4ddf79bc89a5a4 Mon Sep 17 00:00:00 2001 From: slapshot5 Date: Thu, 29 Dec 2011 04:40:47 +0000 Subject: [PATCH] when starting a match, set the Card Picture panels to display the first card in human hand (rather than just being blank until you hover over a card) --- src/main/java/forge/GameAction.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/forge/GameAction.java b/src/main/java/forge/GameAction.java index 69c3007ed67..32f7cb930b6 100644 --- a/src/main/java/forge/GameAction.java +++ b/src/main/java/forge/GameAction.java @@ -1511,7 +1511,6 @@ public class GameAction { this.computerStartsGame(); } - //Ante restricted to Quest Mode for now if (Singletons.getModel().getPreferences().isPlayForAnte()) { final String nl = System.getProperty("line.separator"); final StringBuilder msg = new StringBuilder(); @@ -1539,6 +1538,8 @@ public class GameAction { AllZone.getHumanPlayer().drawCard(); AllZone.getComputerPlayer().drawCard(); } + + AllZone.getDisplay().setCard(AllZone.getHumanPlayer().getCardsIn(Zone.Hand).get(0)); AllZone.getInputControl().setInput(new InputMulligan()); Phase.setGameBegins(1);