From eb1f53ef542a17161595c7cd62c0aeb6432e9f3e Mon Sep 17 00:00:00 2001 From: elcnesh Date: Thu, 2 Apr 2015 09:28:39 +0000 Subject: [PATCH] Getting tired of these "bug" reports on selecting starting player in multiplayer matches, added a sentence to the prompt --- forge-gui/src/main/java/forge/player/PlayerControllerHuman.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forge-gui/src/main/java/forge/player/PlayerControllerHuman.java b/forge-gui/src/main/java/forge/player/PlayerControllerHuman.java index 71afe88ff4e..442c56f5b3a 100644 --- a/forge-gui/src/main/java/forge/player/PlayerControllerHuman.java +++ b/forge-gui/src/main/java/forge/player/PlayerControllerHuman.java @@ -536,7 +536,7 @@ public class PlayerControllerHuman return inp.getResult() ? this.player : this.player.getOpponents().get(0); } else { - final String prompt = String.format("%s, you %s\n\nWho would you like to start this game?", + final String prompt = String.format("%s, you %s\n\nWho would you like to start this game? (Click on the portrait.)", player.getName(), isFirstGame ? " have won the coin toss." : " lost the last game."); final InputSelectEntitiesFromList input = new InputSelectEntitiesFromList(this, 1, 1, new FCollection(game.getPlayersInTurnOrder())); input.setMessage(prompt);