summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2010-01-14 10:11:03 -0600
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2010-01-14 10:11:03 -0600
commit216124f7025705d1a682759d22625b6fdfdd3b96 (patch)
treead8158786f4d1780ba294f95f70eae938cbc2270 /crawl-ref
parent0cdca121f3670c4eb5b4f6fde8febf4cc29616fd (diff)
downloadcrawl-ref-216124f7025705d1a682759d22625b6fdfdd3b96.tar.gz
crawl-ref-216124f7025705d1a682759d22625b6fdfdd3b96.zip
Remove the last references to god_hates_butchery().
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/religion.cc3
-rw-r--r--crawl-ref/source/religion.h1
2 files changed, 0 insertions, 4 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index b3f07ac612..e2b80c93e6 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -774,9 +774,6 @@ std::string get_god_dislikes(god_type which_god, bool /*verbose*/)
std::vector<std::string> dislikes;
- if (god_hates_butchery(which_god))
- dislikes.push_back("you butcher corpses while praying");
-
if (god_hates_cannibalism(which_god))
dislikes.push_back("you perform cannibalism");
diff --git a/crawl-ref/source/religion.h b/crawl-ref/source/religion.h
index e5122ee2d1..58e2b46c9d 100644
--- a/crawl-ref/source/religion.h
+++ b/crawl-ref/source/religion.h
@@ -97,7 +97,6 @@ bool god_hates_cannibalism(god_type god);
bool god_hates_killing(god_type god, const monsters* mon);
bool god_likes_fresh_corpses(god_type god);
bool god_likes_butchery(god_type god);
-bool god_hates_butchery(god_type god);
harm_protection_type god_protects_from_harm(god_type god, bool actual = true);
bool jiyva_is_dead();