summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/religion.cc
diff options
context:
space:
mode:
authorJude Brown <bookofjude@users.sourceforge.net>2009-12-25 10:31:44 +1000
committerJude Brown <bookofjude@users.sourceforge.net>2009-12-25 10:31:44 +1000
commit67f150128ce5d4c507b148e2321b1994068cf494 (patch)
tree4de44a32584a264c0f50b6fa28c72149307b0d4f /crawl-ref/source/religion.cc
parentd8bcaddd74127807fd2a7a3018559baa54948ed9 (diff)
downloadcrawl-ref-67f150128ce5d4c507b148e2321b1994068cf494.tar.gz
crawl-ref-67f150128ce5d4c507b148e2321b1994068cf494.zip
Remove Ely's dislike of butchery during prayer. (FR231)
As sacrifice is now simply praying over a corpse rather than butchering while praying, butchering during pray to Ely should no longer be construed as an attempt to sacrifice to her.
Diffstat (limited to 'crawl-ref/source/religion.cc')
-rw-r--r--crawl-ref/source/religion.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index 3ec55a07cc..accadce94e 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -5151,7 +5151,7 @@ bool god_likes_fresh_corpses(god_type god)
bool god_hates_butchery(god_type god)
{
- return (god == GOD_ELYVILON);
+ return (false);
}
harm_protection_type god_protects_from_harm(god_type god, bool actual)