summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monplace.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-12 06:12:35 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-12 06:12:35 +0000
commit3369ae23fda553c05f6fc48c177f517503cb51ea (patch)
tree029a5238b02244ed366df193ef737907d777a2c0 /crawl-ref/source/monplace.cc
parent7048b8fc932d93367720044a9e4d9f837cdd7b62 (diff)
downloadcrawl-ref-3369ae23fda553c05f6fc48c177f517503cb51ea.tar.gz
crawl-ref-3369ae23fda553c05f6fc48c177f517503cb51ea.zip
Make sure chaotic beings are actually angered by Zin worshippers (oops).
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5754 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/monplace.cc')
-rw-r--r--crawl-ref/source/monplace.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/monplace.cc b/crawl-ref/source/monplace.cc
index 274be57a49..b4ff3b8767 100644
--- a/crawl-ref/source/monplace.cc
+++ b/crawl-ref/source/monplace.cc
@@ -2041,7 +2041,7 @@ bool player_will_anger_monster(monsters *mon, bool *holy,
if (antimagical)
*antimagical = is_antimagical;
- return (is_holy || is_unholy || is_antimagical);
+ return (is_holy || is_unholy || is_lawful || is_antimagical);
}
bool player_angers_monster(monsters *mon)