summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/overmap.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-01-08 11:16:37 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-01-08 11:16:37 +0000
commit9c97ddbda36cd41dc26c67000b62b6368ea6087b (patch)
tree8cb3170a5a2fb3c444e62a4e4b71de83fe186259 /crawl-ref/source/overmap.cc
parentb0dfd61493f734d242fcd40d7fb57d38be6cc80a (diff)
downloadcrawl-ref-9c97ddbda36cd41dc26c67000b62b6368ea6087b.tar.gz
crawl-ref-9c97ddbda36cd41dc26c67000b62b6368ea6087b.zip
Reworded titles in overmap display per David's suggestions.
Also removed '_' as display notes since it's reachable by ? : now. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@803 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/overmap.cc')
-rw-r--r--crawl-ref/source/overmap.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/overmap.cc b/crawl-ref/source/overmap.cc
index 8252d33580..08c343bf5f 100644
--- a/crawl-ref/source/overmap.cc
+++ b/crawl-ref/source/overmap.cc
@@ -222,7 +222,7 @@ std::string overview_description_string()
{
if ( !branchcount )
{
- disp += "\n<white>Branches:</white>\n";
+ disp += "\n<white>Branches:</white> (use <white>Ctrl-G</white> to reach them)\n";
seen_anything = true;
}
@@ -249,7 +249,7 @@ std::string overview_description_string()
// we loop through everything a dozen times, oh well
if ( !notable_altars.empty() )
{
- disp += "\n<white>Altars:</white>\n";
+ disp += "\n<white>Altars:</white> (use <white>Ctrl-F \"altar\"</white> to reach them)\n";
seen_anything = true;
}
@@ -295,7 +295,7 @@ std::string overview_description_string()
// print shops
if (!shops_present.empty())
{
- disp += "\n<white>Shops:</white>\n";
+ disp +="\n<white>Shops:</white> (use <white>Ctrl-F \"shop\"</white> to reach them)\n";
seen_anything = true;
}
last_id.depth = 10000;