Fixed rooms.dat formatting (was throwing exceptions)

This commit is contained in:
Luca Carnegie
2019-05-14 15:41:26 -04:00
parent 690ff4abaf
commit 3138bf34c1
2 changed files with 36 additions and 37 deletions

View File

@@ -140,11 +140,10 @@ class Game {
* Print out the opening message for the player.
*/
private void printWelcome() {
System.out.println();
System.out.println("Welcome to Zork!");
System.out.println("Zork is a new, incredibly boring adventure game, for now...");
System.out.println("Type 'help' if you need help.");
System.out.println();
System.out.println("Welcome to ESCAPE CASA LOMA!\n-----");
System.out.println("A new, fresh take on the escape-room franchise,\nby Johnathon, Luca, Victoria and Evan ");
System.out.println("Type 'help' if you need help, and enjoy the game!");
System.out.println("\n---------------------\n");
System.out.println(currentRoom.longDescription());
}