summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/misc.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-11 06:57:43 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-11 06:57:43 +0000
commite65d4ee999e6673244c26ae7278665d6fe241a5e (patch)
tree55fd8f976876d95a8de5fb4fae73f311a96a5284 /crawl-ref/source/misc.cc
parent46ed610698d1401308402dfc9e00331c4d1b088a (diff)
downloadcrawl-ref-e65d4ee999e6673244c26ae7278665d6fe241a5e.tar.gz
crawl-ref-e65d4ee999e6673244c26ae7278665d6fe241a5e.zip
Remove #define SHUT_LABYRINTH because I don't think it's needed anymore.
Add more information to the version command. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5729 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/misc.cc')
-rw-r--r--crawl-ref/source/misc.cc12
1 files changed, 2 insertions, 10 deletions
diff --git a/crawl-ref/source/misc.cc b/crawl-ref/source/misc.cc
index fadc4b16b3..975fd7aae0 100644
--- a/crawl-ref/source/misc.cc
+++ b/crawl-ref/source/misc.cc
@@ -1744,15 +1744,6 @@ void down_stairs( int old_level, dungeon_feature_type force_stair,
level_id shaft_dest;
int shaft_level = -1;
-#ifdef SHUT_LABYRINTH
- if (stair_find == DNGN_ENTER_LABYRINTH)
- {
- mpr("Sorry, this section of the dungeon is closed for fumigation.");
- mpr("Try again next release.");
- return;
- }
-#endif
-
// Probably still need this check here (teleportation) -- bwr
if (grid_stair_direction(stair_find) != CMD_GO_DOWNSTAIRS && !shaft)
{
@@ -1767,9 +1758,10 @@ void down_stairs( int old_level, dungeon_feature_type force_stair,
&& stair_find <= DNGN_ESCAPE_HATCH_DOWN
&& player_in_branch( BRANCH_VESTIBULE_OF_HELL ))
{
+ // Down stairs in vestibule are one-way!
mpr("A mysterious force prevents you from descending the staircase.");
return;
- } // Down stairs in vestibule are one-way!
+ }
if (stair_find == DNGN_STONE_ARCH)
{