diff options
author | Benoît LUBRANO DI SBARAGLIONE | 2014-02-12 12:22:11 +0100 |
---|---|---|
committer | Benoît LUBRANO DI SBARAGLIONE | 2014-02-12 12:22:11 +0100 |
commit | 514364c6202e88a0ad33b880844bd7537e0de71d (patch) | |
tree | da294e77ae60adad90c30f042a20837ef5e1df2b /src | |
parent | 0097d9808cba4e9a91977070aaebd7564de28537 (diff) | |
download | esieequest-514364c6202e88a0ad33b880844bd7537e0de71d.tar.gz |
Fix main corridor.
Diffstat (limited to 'src')
-rw-r--r-- | src/esieequest/Game.java | 10 |
1 files changed, 5 insertions, 5 deletions
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 { | |||
37 | Room vAmphitheaterEntrance = new Room("at the amphitheater entrance"); | 37 | Room vAmphitheaterEntrance = new Room("at the amphitheater entrance"); |
38 | Room vAmphitheaterFront = new Room("in ESIEE main corridor, in front of the amphitheater"); | 38 | Room vAmphitheaterFront = new Room("in ESIEE main corridor, in front of the amphitheater"); |
39 | Room vCafeteria = new Room("in the cafeteria"); | 39 | Room vCafeteria = new Room("in the cafeteria"); |
40 | Room vCafeteriaFront = new Room("in front of the cafeteria"); | 40 | Room vCafeteriaFront = new Room("in ESIEE main corridor, in front of the cafeteria"); |
41 | Room vStudentsUnionFront = new Room("in front of the Students' Union"); | 41 | Room vStudentsUnionFront = new Room("in ESIEE main corridor, in front of the Students' Union"); |
42 | Room vStudentsUnion = new Room("in the Students' Union HQ"); | 42 | Room vStudentsUnion = new Room("in the Students' Union HQ"); |
43 | Room vStreetEsieespace = new Room("in the ESIEE main corridor, in front of the ESIEEspace HQ"); | 43 | Room vStreetEsieespace = new Room("in ESIEE main corridor, in front of the ESIEEspace HQ"); |
44 | Room vEsieespaceEntrance = new Room("at the ESIEEspace HQ entrance"); | 44 | Room vEsieespaceEntrance = new Room("at the ESIEEspace HQ entrance"); |
45 | Room vEsieespace = new Room("in the ESIEEspace HQ"); | 45 | Room vEsieespace = new Room("in the ESIEEspace HQ"); |
46 | Room vReception = new Room("at the Reception"); | 46 | Room vReception = new Room("in ESIEE main corridor, at the Reception"); |
47 | Room vEntranceStairs = new Room("at the entrance stairs"); | 47 | Room vEntranceStairs = new Room("at the entrance stairs"); |
48 | Room vRoundabout = new Room("at the roundabout"); | 48 | Room vRoundabout = new Room("at the roundabout"); |
49 | Room vWingFront = new Room("in font of wing 3"); | 49 | Room vWingFront = new Room("in font of wing 3"); |
@@ -65,7 +65,7 @@ public class Game { | |||
65 | vCafeteriaFront.setExits(null, vCafeteria, vAmphitheaterFront, vStudentsUnionFront); | 65 | vCafeteriaFront.setExits(null, vCafeteria, vAmphitheaterFront, vStudentsUnionFront); |
66 | vStudentsUnionFront.setExits(null, vStudentsUnion, vCafeteriaFront, null); | 66 | vStudentsUnionFront.setExits(null, vStudentsUnion, vCafeteriaFront, null); |
67 | vStudentsUnion.setExits(vStudentsUnionFront, null, null, null); | 67 | vStudentsUnion.setExits(vStudentsUnionFront, null, null, null); |
68 | vStreetEsieespace.setExits(null, vEsieespaceEntrance, vReception, null); | 68 | vStreetEsieespace.setExits(null, vEsieespaceEntrance, vReception, vAmphitheaterFront); |
69 | vEsieespaceEntrance.setExits(vStreetEsieespace, null, vEsieespace, null); | 69 | vEsieespaceEntrance.setExits(vStreetEsieespace, null, vEsieespace, null); |
70 | vEsieespace.setExits(null, null, null, vEsieespaceEntrance); | 70 | vEsieespace.setExits(null, null, null, vEsieespaceEntrance); |
71 | vReception.setExits(null, vEntranceStairs, vWingFront, vStreetEsieespace); | 71 | vReception.setExits(null, vEntranceStairs, vWingFront, vStreetEsieespace); |