summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/dat/database/godspeak.txt2
-rw-r--r--crawl-ref/source/religion.cc4
2 files changed, 4 insertions, 2 deletions
diff --git a/crawl-ref/source/dat/database/godspeak.txt b/crawl-ref/source/dat/database/godspeak.txt
index 71cc6adc0a..c388f94300 100644
--- a/crawl-ref/source/dat/database/godspeak.txt
+++ b/crawl-ref/source/dat/database/godspeak.txt
@@ -507,6 +507,8 @@ chaotic_god
Xom
Makhleb
+
+Lugonu
%%%%
evil_god
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";