summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/religion.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-08-09 18:53:04 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-08-09 18:53:04 +0000
commit62e30bac3c80f5d9430d04f77090cec60782de96 (patch)
tree99f6892fe8db9af46f8b20bef6c8c86545e80809 /crawl-ref/source/religion.cc
parente4b4c6ec7abcdd34560e81630e863bec8185489a (diff)
downloadcrawl-ref-62e30bac3c80f5d9430d04f77090cec60782de96.tar.gz
crawl-ref-62e30bac3c80f5d9430d04f77090cec60782de96.zip
Fix the healing blessing logic again.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6807 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/religion.cc')
-rw-r--r--crawl-ref/source/religion.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index 48e284c00f..d0b139e4bd 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -1609,7 +1609,10 @@ bool bless_follower(monsters *follower,
bool healing = _blessing_healing(follower);
if (!healing || coinflip())
- healing = _blessing_healing(follower);
+ {
+ if (_blessing_healing(follower))
+ healing = true;
+ }
if (healing)
{