summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/view.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/view.cc')
-rw-r--r--crawl-ref/source/view.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/crawl-ref/source/view.cc b/crawl-ref/source/view.cc
index e29439e195..6a22de3464 100644
--- a/crawl-ref/source/view.cc
+++ b/crawl-ref/source/view.cc
@@ -3159,15 +3159,21 @@ void show_map( FixedVector<int, 2> &spec_place, bool travel_mode )
// Returns true if succeeded
-bool magic_mapping(int map_radius, int proportion, bool force)
+bool magic_mapping(int map_radius, int proportion, bool suppress_msg,
+ bool force)
{
if (!force &&
((you.level_type == LEVEL_ABYSS) ||
(you.level_type == LEVEL_LABYRINTH && you.species != SP_MINOTAUR)))
{
+ if (!suppress_msg)
+ mpr("You feel momentarily disoriented.");
return false;
}
+ if (!suppress_msg)
+ mpr( "You feel aware of your surroundings." );
+
int i, j, k, l, empty_count;
if (map_radius > 50 && map_radius != 1000)