diff options
author | Pacien TRAN-GIRARD | 2014-05-03 22:50:12 +0200 |
---|---|---|
committer | Pacien TRAN-GIRARD | 2014-05-03 22:50:12 +0200 |
commit | 780bae6cd1a4d2a81b8c3ed72ee5d73cee9b5ccb (patch) | |
tree | 59a1e5a1bb1df807c766193705912f321b9abd2f /src | |
parent | ca0d48a06332161be61356f5252cb5efea849046 (diff) | |
download | esieequest-780bae6cd1a4d2a81b8c3ed72ee5d73cee9b5ccb.tar.gz |
Hide vertical doors
Diffstat (limited to 'src')
-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 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); |