summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2008-08-25 20:36:05 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2008-08-25 20:36:05 +0000
commit72e13186eedbbfd04cf493e06db8cfd139627e4d (patch)
treeeb210f980eb95b873cc61866991843503ad37852
parent196d110e84738a7e6b6fc8026c27278cbbf53af5 (diff)
downloadcrawl-ref-72e13186eedbbfd04cf493e06db8cfd139627e4d.tar.gz
crawl-ref-72e13186eedbbfd04cf493e06db8cfd139627e4d.zip
Trunk->0.4 r6864: Describe gates to Pan as one-way gates, as for the Abyss.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup-0.4@6865 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/dat/descript/features.txt2
-rw-r--r--crawl-ref/source/directn.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/dat/descript/features.txt b/crawl-ref/source/dat/descript/features.txt
index 0666d64088..8f9d5c0240 100644
--- a/crawl-ref/source/dat/descript/features.txt
+++ b/crawl-ref/source/dat/descript/features.txt
@@ -46,7 +46,7 @@ A gate leading out of Pandemonium
%%%%
A gate leading to another region of Pandemonium
%%%%
-A gate leading to the halls of Pandemonium
+A one-way gate leading to the halls of Pandemonium
Tales about successful loots of these netherworlds are rare. Even the strongest
and most experienced characters can die there. On the other hand, these halls
diff --git a/crawl-ref/source/directn.cc b/crawl-ref/source/directn.cc
index 6e311e8faa..c89dd48cf5 100644
--- a/crawl-ref/source/directn.cc
+++ b/crawl-ref/source/directn.cc
@@ -2029,7 +2029,7 @@ std::string raw_feature_description(dungeon_feature_type grid,
case DNGN_STONE_ARCH:
return ("empty arch of ancient stone");
case DNGN_ENTER_PANDEMONIUM:
- return ("gate leading to the halls of Pandemonium");
+ return ("one-way gate leading to the halls of Pandemonium");
case DNGN_EXIT_PANDEMONIUM:
return ("gate leading out of Pandemonium");
case DNGN_TRANSIT_PANDEMONIUM: