summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-10-11 16:04:45 -0500
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-10-11 16:04:45 -0500
commit7d6de33069c359f758c866bb2d6a94521b1a4ad5 (patch)
tree76bffc4c406f8bded1520d45c1fe8a74ba7d12f8 /crawl-ref/source/describe.cc
parentf5441fc9dd70ad0d0bca04e0bbf6838b97dcb24e (diff)
downloadcrawl-ref-7d6de33069c359f758c866bb2d6a94521b1a4ad5.tar.gz
crawl-ref-7d6de33069c359f758c866bb2d6a94521b1a4ad5.zip
Make gods that take corpse offerings do so without the butchery step,
i.e., allow merely praying over said corpses. Now, the only gods that pay attention to butchery are Kikubaaqudgha and Elyvilon. Also, add several miscellaneous fixes.
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc15
1 files changed, 11 insertions, 4 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 3644ad37f2..462320deee 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -3127,7 +3127,7 @@ std::string describe_favour(god_type which_god)
: _describe_favour_generic(which_god);
}
-static std::string _religion_help( god_type god )
+static std::string _religion_help(god_type god)
{
std::string result = "";
@@ -3182,6 +3182,12 @@ static std::string _religion_help( god_type god )
}
break;
+ case GOD_BEOGH:
+ result += "You can pray to sacrifice all orcish remains on your "
+ "square. Inscribe orcish remains with !p, !* or =p to avoid "
+ "sacrificing them accidentally.";
+ break;
+
case GOD_NEMELEX_XOBEH:
result += "You can pray to sacrifice all items on your square. "
"Inscribe items with !p, !* or =p to avoid sacrificing "
@@ -3200,13 +3206,14 @@ static std::string _religion_help( god_type god )
break;
}
- if (god_likes_butchery(god))
+ if (god_likes_fresh_corpses(god))
{
if (!result.empty())
result += " ";
- result += "You can sacrifice corpses by dissecting"
- " them during prayer.";
+ result += "You can pray to sacrifice all fresh corpses on your "
+ "square. Inscribe fresh corpses with !p, !* or =p to avoid "
+ "sacrificing them accidentally.";
}
return result;