aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacien TRAN-GIRARD2014-05-28 22:11:04 +0200
committerPacien TRAN-GIRARD2014-05-28 22:11:04 +0200
commitf8a8af9f47cd91eabf8f0f367b0f0a9b1d053b65 (patch)
treeaf24ba21e88fde17d9f4a343204ce3b42bba32c6
parentaa45dc28cee40f811b1af5ffb7452a0ddbb05d3b (diff)
downloadesieequest-f8a8af9f47cd91eabf8f0f367b0f0a9b1d053b65.tar.gz
Fix stairs connection
-rw-r--r--src/esieequest/model/Game.java3
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);