summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/religion.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-30 14:48:08 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-30 14:48:08 +0000
commit74937f642da3d099c47fa84bbfb83456946f8b6e (patch)
treefc5a9ed261ca5a192b0d3610d12efdbfac759b0c /crawl-ref/source/religion.cc
parent0e65534b50e40a32611842551af39a089eff48af (diff)
downloadcrawl-ref-74937f642da3d099c47fa84bbfb83456946f8b6e.tar.gz
crawl-ref-74937f642da3d099c47fa84bbfb83456946f8b6e.zip
Add Lugonu to the list of chaotic gods for Zin's Recital purposes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6246 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/religion.cc')
-rw-r--r--crawl-ref/source/religion.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index 63c0236193..12e743bea4 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -5565,7 +5565,7 @@ bool god_hates_your_god(god_type god,
if (!is_good_god(god))
return (true);
- // Zin hates Xom and Makhleb.
+ // Zin hates chaotic gods.
if (god == GOD_ZIN && is_chaotic_god(your_god))
return (true);
@@ -5581,7 +5581,7 @@ std::string god_hates_your_god_reaction(god_type god,
if (!is_good_god(god))
return "";
- // Zin hates Xom and Makhleb.
+ // Zin hates chaotic gods.
if (god == GOD_ZIN && is_chaotic_god(your_god))
return " for chaos";