summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/abl-show.cc9
1 files changed, 6 insertions, 3 deletions
diff --git a/crawl-ref/source/abl-show.cc b/crawl-ref/source/abl-show.cc
index 365cb01024..ceb47a2064 100644
--- a/crawl-ref/source/abl-show.cc
+++ b/crawl-ref/source/abl-show.cc
@@ -1929,12 +1929,15 @@ static bool _do_ability(const ability_def& abil)
{
int count = fungal_bloom();
- if (count)
+ if (!count)
{
- simple_god_message(" appreciates your contribution to the "
- "ecosystem.", GOD_FEDHAS);
+ canned_msg(MSG_NOTHING_HAPPENS);
+ return (false);
}
+ simple_god_message(" appreciates your contribution to the "
+ "ecosystem.", GOD_FEDHAS);
+
// We are following the blood god sacrifice piety gain model, given as:
// if (random2(level + 10) > 5)
// piety_change = 1;