|
@@ -39,7 +39,7 @@ public class Casino {
|
39
|
39
|
|
40
|
40
|
private String getPlayerNames(int numberOfPlayers, String playerNames) {
|
41
|
41
|
for (int i = 1; i <= numberOfPlayers; i++) {
|
42
|
|
- String nameOfPlayer = console.getStringInput("PLAYER " + i + ": WHAT IS YOUR NAME?");
|
|
42
|
+ String nameOfPlayer = console.getStringInput("\nPLAYER " + i + ": WHAT IS YOUR NAME?");
|
43
|
43
|
players.addPlayer(new Player(nameOfPlayer));
|
44
|
44
|
playerNames += nameOfPlayer + ", ";
|
45
|
45
|
}
|
|
@@ -47,8 +47,10 @@ public class Casino {
|
47
|
47
|
}
|
48
|
48
|
|
49
|
49
|
private int getNumberOfPlayers() {
|
50
|
|
- return console.getIntegerInput("WELCOME TO EPSILON CASINO, CALLED \"ALMOST A CASINO\" ON YELP\n" +
|
51
|
|
- "PLEASE ENTER A NUMBER OF PLAYERS.");
|
|
50
|
+ return console.getIntegerInput("*********************************\n" +
|
|
51
|
+ " WELCOME TO EPSILON CASINO\n---------------------------------\n" +
|
|
52
|
+ "CALLED \"ALMOST A CASINO\" ON YELP\n*********************************\n" +
|
|
53
|
+ "\nPLEASE ENTER A NUMBER OF PLAYERS.");
|
52
|
54
|
}
|
53
|
55
|
|
54
|
56
|
public void chooseTable() {
|