v0.3.1: added a sort of tutorial for the new double-tap to search functionality, and searchign in general

This commit is contained in:
Evan Debenham
2015-07-05 14:07:43 -04:00
committed by Evan Debenham
parent 5aabc2ea64
commit 83dcbb19ec
2 changed files with 10 additions and 2 deletions
@@ -95,6 +95,13 @@ public class SewerLevel extends RegularLevel {
}
}
}
//hides all doors in the entrance room on floor 2, teaches the player to search.
if (Dungeon.depth == 2)
for (Room r : roomEntrance.connected.keySet()){
Room.Door d = roomEntrance.connected.get(r);
map[d.x + d.y * WIDTH] = Terrain.SECRET_DOOR;
}
placeSign();
}