summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/directn.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-02 13:43:22 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-02 13:43:22 +0000
commitb76663efc3848fa64e0133a55b339f691472e217 (patch)
treecafed5a231120970545f60d3a41d2413859be3b3 /crawl-ref/source/directn.cc
parentd764d49f10bab7f7c52cd2bf162dce86d02d822e (diff)
downloadcrawl-ref-b76663efc3848fa64e0133a55b339f691472e217.tar.gz
crawl-ref-b76663efc3848fa64e0133a55b339f691472e217.zip
Since there's currently only one type of portal vault (labyrinths are
treated differently) change the gate description to "gateway to a bazaar", so the bazaar description can actually be searched for. Eventually we might like to include Labyrinths, portal vaults, the Abyss and Pandemonium in the branch descriptions. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6334 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/directn.cc')
-rw-r--r--crawl-ref/source/directn.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/directn.cc b/crawl-ref/source/directn.cc
index 8d3b268e00..e85c5a4163 100644
--- a/crawl-ref/source/directn.cc
+++ b/crawl-ref/source/directn.cc
@@ -2016,7 +2016,8 @@ 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 ("gate leading to a distant place");
+ return ("gateway to a bazaar");
case DNGN_EXIT_PORTAL_VAULT:
return ("gate leading back to the Dungeon");
case DNGN_RETURN_FROM_ORCISH_MINES: