summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2007-10-26 17:15:40 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2007-10-26 17:15:40 +0000
commitc506a674c81b916e395579c5d4ad7b42b22990ae (patch)
tree2599a24ea5b9ecdd42284101bf6d3249b004e9fa
parentde39569239570839967544f5703a7e477dfce228 (diff)
downloadcrawl-ref-c506a674c81b916e395579c5d4ad7b42b22990ae.tar.gz
crawl-ref-c506a674c81b916e395579c5d4ad7b42b22990ae.zip
Modified "kneel at the altar" message to allow for Naga
special casing. Using both "coil" and "prostrate" to make everyone happy. :) git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup-0.3@2603 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/religion.cc8
1 files changed, 6 insertions, 2 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index a7ce006b35..c7a1102aed 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -2841,7 +2841,8 @@ static std::string sacrifice_message(god_type god, const item_def &item,
void altar_prayer(void)
{
- mpr( "You kneel at the altar and pray." );
+ // different message than when first joining a religion
+ mpr( "You prostrate yourself in front of the altar and pray." );
if (you.religion == GOD_XOM)
return;
@@ -3040,7 +3041,10 @@ void offer_items()
void god_pitch(god_type which_god)
{
- mprf("You kneel at the altar of %s.", god_name(which_god));
+ mprf("You %s the altar of %s.",
+ you.species == SP_NAGA ? "coil in front of"
+ : "kneel at",
+ god_name(which_god));
more();
// Note: using worship we could make some gods not allow followers to