From eb59a79d8f2e4957fc45a4550b5ab9245150c14c Mon Sep 17 00:00:00 2001 From: David Lawrence Ramsey Date: Thu, 12 Nov 2009 20:50:46 -0600 Subject: Give feedback when Fedhas' decomposition has no effect. --- crawl-ref/source/abl-show.cc | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/abl-show.cc') 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; -- cgit v1.2.3-54-g00ecf