summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/misc.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2009-10-29 21:01:14 +0100
committerAdam Borowski <kilobyte@angband.pl>2009-10-29 21:01:14 +0100
commit82ee11b0726a678945ecad183a5f47b6a4e49aa5 (patch)
treeee82803e41447dc6191eba936a24d60c6059fbf8 /crawl-ref/source/misc.cc
parent37cf70232c46f7afc1de25998cc52b979d1cafea (diff)
downloadcrawl-ref-82ee11b0726a678945ecad183a5f47b6a4e49aa5.tar.gz
crawl-ref-82ee11b0726a678945ecad183a5f47b6a4e49aa5.zip
Slow down the monster spawn rate in the Abyss for worshippers of Cheibriados.
Currently, this god makes Abyss a hell, let's let him compensate a bit...
Diffstat (limited to 'crawl-ref/source/misc.cc')
-rw-r--r--crawl-ref/source/misc.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/misc.cc b/crawl-ref/source/misc.cc
index 03ff51dbb2..c70c8e5ec8 100644
--- a/crawl-ref/source/misc.cc
+++ b/crawl-ref/source/misc.cc
@@ -2325,6 +2325,9 @@ void down_stairs( int old_level, dungeon_feature_type force_stair,
mpr("You enter the Abyss!");
mpr("To return, you must find a gate leading back.");
+ if (you.religion == GOD_CHEIBRIADOS)
+ mpr("You feel Cheibriados slowing down the madness of this place.",
+ MSGCH_GOD, GOD_CHEIBRIADOS);
learned_something_new(TUT_ABYSS);
break;