summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/main.cc')
-rw-r--r--crawl-ref/source/main.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/crawl-ref/source/main.cc b/crawl-ref/source/main.cc
index 29f262bfc7..ea2cab6d01 100644
--- a/crawl-ref/source/main.cc
+++ b/crawl-ref/source/main.cc
@@ -1876,6 +1876,14 @@ void process_command( command_type cmd )
mpr("You need to eat something NOW!");
break;
}
+ else if (you.level_type == LEVEL_LABYRINTH)
+ {
+ if (!yesno("You will probably just end up going in circles. Are you"
+ " sure you wish to explore this labyrinth?", false, 'n'))
+ {
+ break;
+ }
+ }
// Start exploring
start_explore(Options.explore_greedy);
break;