game: Added more intro description
This commit is contained in:
parent
8fdf5a2cdb
commit
cf4bb47c8f
@ -118,7 +118,15 @@ public class Game extends Application {
|
|||||||
|
|
||||||
// Send intro message
|
// Send intro message
|
||||||
message = "Welcome to Blue Lagoon\nYou have started a new game for " + numPlayers + " players.";
|
message = "Welcome to Blue Lagoon\nYou have started a new game for " + numPlayers + " players.";
|
||||||
if (AI != 0) message += "\nAI is playing";
|
switch (AI){
|
||||||
|
case 0 -> message += "\nAll players are human";
|
||||||
|
case 1 -> message += "\nThere is 1 AI";
|
||||||
|
default -> message += "\nThere are " + AI + " AIs";
|
||||||
|
}
|
||||||
|
message += """
|
||||||
|
|
||||||
|
To place a settler, left click on a tile
|
||||||
|
To place a village, right click on a tile""";
|
||||||
sendMessage(message);
|
sendMessage(message);
|
||||||
// Refresh the GUI (render the game)
|
// Refresh the GUI (render the game)
|
||||||
refresh();
|
refresh();
|
||||||
|
Loading…
Reference in New Issue
Block a user