diff options
-rw-r--r-- | src/esieequest/model/Game.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/esieequest/model/Game.java b/src/esieequest/model/Game.java index 65380c1..ecc6feb 100644 --- a/src/esieequest/model/Game.java +++ b/src/esieequest/model/Game.java | |||
@@ -99,7 +99,8 @@ public class Game implements SerialisableObject { | |||
99 | this.d(Room.ENTRANCE_STREET, Direction.EAST, Room.WING_STREET); | 99 | this.d(Room.ENTRANCE_STREET, Direction.EAST, Room.WING_STREET); |
100 | this.d(Room.WING_STREET, Direction.NORTH, Room.WING_FLOOR_ONE); | 100 | this.d(Room.WING_STREET, Direction.NORTH, Room.WING_FLOOR_ONE); |
101 | this.d(Room.WING_FLOOR_ONE, Direction.WEST, Room.WING_STAIRS_ONE); | 101 | this.d(Room.WING_FLOOR_ONE, Direction.WEST, Room.WING_STAIRS_ONE); |
102 | this.d(Room.WING_STAIRS_ONE, Direction.SOUTH, Room.WING_STAIRS_TWO); | 102 | this.d(Room.WING_STAIRS_ONE, Direction.SOUTH, new Door(Room.WING_STAIRS_TWO)); |
103 | this.d(Room.WING_STAIRS_TWO, Direction.SOUTH, new Door(Room.WING_STAIRS_ONE)); | ||
103 | this.d(Room.WING_STAIRS_ONE, Direction.UP, new HiddenDoor(Room.WING_STAIRS_TWO)); | 104 | this.d(Room.WING_STAIRS_ONE, Direction.UP, new HiddenDoor(Room.WING_STAIRS_TWO)); |
104 | this.d(Room.WING_STAIRS_TWO, Direction.DOWN, new HiddenDoor(Room.WING_STAIRS_ONE)); | 105 | this.d(Room.WING_STAIRS_TWO, Direction.DOWN, new HiddenDoor(Room.WING_STAIRS_ONE)); |
105 | this.d(Room.WING_STAIRS_TWO, Direction.EAST, Room.WING_FLOOR_TWO); | 106 | this.d(Room.WING_STAIRS_TWO, Direction.EAST, Room.WING_FLOOR_TWO); |