summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/directn.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2008-11-18 14:59:13 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2008-11-18 14:59:13 +0000
commitcb1d25a9a8371edb63bc1721b616df12c4e790c2 (patch)
tree08768aa7dae105247c3a8acf30b4537b7aa93747 /crawl-ref/source/directn.cc
parent564115dd01a10153ad421df67b1b008fe514cf0c (diff)
downloadcrawl-ref-cb1d25a9a8371edb63bc1721b616df12c4e790c2.tar.gz
crawl-ref-cb1d25a9a8371edb63bc1721b616df12c4e790c2.zip
Use the correct portal description in explore stop messages.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7475 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/directn.cc')
-rw-r--r--crawl-ref/source/directn.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/directn.cc b/crawl-ref/source/directn.cc
index 29ec859c09..9002ca9f4b 100644
--- a/crawl-ref/source/directn.cc
+++ b/crawl-ref/source/directn.cc
@@ -2480,8 +2480,9 @@ std::string raw_feature_description(dungeon_feature_type grid,
case DNGN_ENTER_SHOALS:
return ("staircase to the Shoals");
case DNGN_ENTER_PORTAL_VAULT:
-// return ("gate leading to a distant place");
- return ("gateway to a bazaar");
+ // The bazaar description should be set in the bazaar marker; this
+ // is the description for a portal of unknown type.
+ return ("gate leading to a distant place");
case DNGN_EXIT_PORTAL_VAULT:
return ("gate leading back to the Dungeon");
case DNGN_RETURN_FROM_ORCISH_MINES: