aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacien TRAN-GIRARD2014-05-03 22:50:12 +0200
committerPacien TRAN-GIRARD2014-05-03 22:50:12 +0200
commit780bae6cd1a4d2a81b8c3ed72ee5d73cee9b5ccb (patch)
tree59a1e5a1bb1df807c766193705912f321b9abd2f
parentca0d48a06332161be61356f5252cb5efea849046 (diff)
downloadesieequest-780bae6cd1a4d2a81b8c3ed72ee5d73cee9b5ccb.tar.gz
Hide vertical doors
-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 6571d3f..549fdc8 100644
--- a/src/esieequest/model/Game.java
+++ b/src/esieequest/model/Game.java
@@ -82,7 +82,8 @@ public class Game {
82 this.d(Room.WING_STREET, Direction.NORTH, Room.WING_FLOOR_ONE); 82 this.d(Room.WING_STREET, Direction.NORTH, Room.WING_FLOOR_ONE);
83 this.d(Room.WING_FLOOR_ONE, Direction.WEST, Room.WING_STAIRS_ONE); 83 this.d(Room.WING_FLOOR_ONE, Direction.WEST, Room.WING_STAIRS_ONE);
84 this.d(Room.WING_STAIRS_ONE, Direction.SOUTH, Room.WING_STAIRS_TWO); 84 this.d(Room.WING_STAIRS_ONE, Direction.SOUTH, Room.WING_STAIRS_TWO);
85 this.d(Room.WING_STAIRS_ONE, Direction.UP, Room.WING_STAIRS_TWO); 85 this.d(Room.WING_STAIRS_ONE, Direction.UP, new HiddenDoor(Room.WING_STAIRS_TWO));
86 this.d(Room.WING_STAIRS_TWO, Direction.DOWN, new HiddenDoor(Room.WING_STAIRS_ONE));
86 this.d(Room.WING_STAIRS_TWO, Direction.EAST, Room.WING_FLOOR_TWO); 87 this.d(Room.WING_STAIRS_TWO, Direction.EAST, Room.WING_FLOOR_TWO);
87 this.d(Room.WING_FLOOR_TWO, Direction.NORTH, Room.WING_OFFICE_CORRIDOR); 88 this.d(Room.WING_FLOOR_TWO, Direction.NORTH, Room.WING_OFFICE_CORRIDOR);
88 this.d(Room.WING_OFFICE_CORRIDOR, Direction.EAST, Room.WING_OFFICE); 89 this.d(Room.WING_OFFICE_CORRIDOR, Direction.EAST, Room.WING_OFFICE);