Browse Source

minor changes during discussion with lauren

Jonathan Hinds 6 years ago
parent
commit
56531a60c6
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/main/java/io/zipcoder/casino/Console.java

+ 2
- 2
src/main/java/io/zipcoder/casino/Console.java View File

13
     Console(){
13
     Console(){
14
         gameLib.add("yahtzee");
14
         gameLib.add("yahtzee");
15
         gameLib.add("war");
15
         gameLib.add("war");
16
-        gameLib.add("three card stud");
16
+        gameLib.add("stud");
17
         gameLib.add("quit");
17
         gameLib.add("quit");
18
     }
18
     }
19
 
19
 
118
     }
118
     }
119
 
119
 
120
     public String continueAskGame(){
120
     public String continueAskGame(){
121
+
121
         String command = "";
122
         String command = "";
122
 
123
 
123
         System.out.println("Please choose a game to play!");
124
         System.out.println("Please choose a game to play!");
133
         }
134
         }
134
         return command;
135
         return command;
135
     }
136
     }
136
-
137
 }
137
 }