summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/religion.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/religion.cc')
-rw-r--r--crawl-ref/source/religion.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index 7d90600713..7625f252c0 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -1546,7 +1546,7 @@ static bool _blessing_healing(monsters* mon)
const int healing = mon->max_hit_points / 4 + 1;
// Heal a monster.
- if (heal_monster(mon, healing + random2(healing + 1), false))
+ if (mon->heal(healing + random2(healing + 1)))
{
// A high-HP monster might get a unique name.
if (x_chance_in_y(mon->max_hit_points + 1, 100))