From 514364c6202e88a0ad33b880844bd7537e0de71d Mon Sep 17 00:00:00 2001 From: Benoît LUBRANO DI SBARAGLIONE Date: Wed, 12 Feb 2014 12:22:11 +0100 Subject: Fix main corridor. --- src/esieequest/Game.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/esieequest/Game.java b/src/esieequest/Game.java index a4594ac..767e59d 100644 --- a/src/esieequest/Game.java +++ b/src/esieequest/Game.java @@ -37,13 +37,13 @@ public class Game { Room vAmphitheaterEntrance = new Room("at the amphitheater entrance"); Room vAmphitheaterFront = new Room("in ESIEE main corridor, in front of the amphitheater"); Room vCafeteria = new Room("in the cafeteria"); - Room vCafeteriaFront = new Room("in front of the cafeteria"); - Room vStudentsUnionFront = new Room("in front of the Students' Union"); + Room vCafeteriaFront = new Room("in ESIEE main corridor, in front of the cafeteria"); + Room vStudentsUnionFront = new Room("in ESIEE main corridor, in front of the Students' Union"); Room vStudentsUnion = new Room("in the Students' Union HQ"); - Room vStreetEsieespace = new Room("in the ESIEE main corridor, in front of the ESIEEspace HQ"); + Room vStreetEsieespace = new Room("in ESIEE main corridor, in front of the ESIEEspace HQ"); Room vEsieespaceEntrance = new Room("at the ESIEEspace HQ entrance"); Room vEsieespace = new Room("in the ESIEEspace HQ"); - Room vReception = new Room("at the Reception"); + Room vReception = new Room("in ESIEE main corridor, at the Reception"); Room vEntranceStairs = new Room("at the entrance stairs"); Room vRoundabout = new Room("at the roundabout"); Room vWingFront = new Room("in font of wing 3"); @@ -65,7 +65,7 @@ public class Game { vCafeteriaFront.setExits(null, vCafeteria, vAmphitheaterFront, vStudentsUnionFront); vStudentsUnionFront.setExits(null, vStudentsUnion, vCafeteriaFront, null); vStudentsUnion.setExits(vStudentsUnionFront, null, null, null); - vStreetEsieespace.setExits(null, vEsieespaceEntrance, vReception, null); + vStreetEsieespace.setExits(null, vEsieespaceEntrance, vReception, vAmphitheaterFront); vEsieespaceEntrance.setExits(vStreetEsieespace, null, vEsieespace, null); vEsieespace.setExits(null, null, null, vEsieespaceEntrance); vReception.setExits(null, vEntranceStairs, vWingFront, vStreetEsieespace); -- cgit v1.2.3