summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/abl-show.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/abl-show.cc')
-rw-r--r--crawl-ref/source/abl-show.cc10
1 files changed, 7 insertions, 3 deletions
diff --git a/crawl-ref/source/abl-show.cc b/crawl-ref/source/abl-show.cc
index 36435d4207..f9fffeeb6d 100644
--- a/crawl-ref/source/abl-show.cc
+++ b/crawl-ref/source/abl-show.cc
@@ -1980,15 +1980,19 @@ static bool _do_ability(const ability_def& abil)
{
int count = fungal_bloom();
+ if (count)
+ {
+ simple_god_message(" appreciates your contribution to the ecosystem.",
+ GOD_FEAWN);
+ }
+
// We are following the blood god sacrifice piety gain model, given as:
// if (random2(level + 10) > 5)
// piety_change = 1;
// where level = 10
// so the chance of gaining 1 piety from a corpse sacrifice to a blood
// god is (14/20 == 70/100)
-
- int piety_gain = binomial_generator(count,70);
-
+ int piety_gain = binomial_generator(count, 70);
gain_piety(piety_gain);
break;
}