summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/godwrath.cc
diff options
context:
space:
mode:
authorSteve Melenchuk <smelenchuk@gmail.com>2014-01-10 10:06:57 -0700
committerSteve Melenchuk <smelenchuk@gmail.com>2014-01-10 11:27:24 -0700
commit6de48f855940f775d86d2b683f3ad37d779b385d (patch)
tree49d6bd8ee7b77bb0a9cf2f169fe81820045849e7 /crawl-ref/source/godwrath.cc
parent6e6ea4d27df4a5d67f2219015caddddf86c4674d (diff)
downloadcrawl-ref-6de48f855940f775d86d2b683f3ad37d779b385d.tar.gz
crawl-ref-6de48f855940f775d86d2b683f3ad37d779b385d.zip
Shadow god - Mark as a wrath effect (Lasty).
Diffstat (limited to 'crawl-ref/source/godwrath.cc')
-rw-r--r--crawl-ref/source/godwrath.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/crawl-ref/source/godwrath.cc b/crawl-ref/source/godwrath.cc
index 84b91bf033..5dec9a900d 100644
--- a/crawl-ref/source/godwrath.cc
+++ b/crawl-ref/source/godwrath.cc
@@ -1182,7 +1182,7 @@ static bool _dsomething_retribution()
// shadow theme
const god_type god = GOD_DSOMETHING;
- switch(random2(3))
+ switch(random2(4))
{
case 0:
{
@@ -1225,7 +1225,12 @@ static bool _dsomething_retribution()
// This is possibly kind of underwhelming?
god_speaks(god, "You feel overwhelmed by the shadows around you.");
you.put_to_sleep(NULL, 30 + random2(20));
+ break;
}
+ case 3:
+ simple_god_message(" tears the shadows away from you.", god);
+ you.sentinel_mark();
+ break;
}
return true;
}