summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/religion.cc9
1 files changed, 8 insertions, 1 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index 0ba9d78f56..b0f3540465 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -853,7 +853,8 @@ static bool _blessing_AC(monsters* mon)
static bool _blessing_balms(monsters *mon)
{
// Remove poisoning, sickness, confusion, and rotting, like a potion
- // of healing, but without the healing.
+ // of healing, but without the healing. Also, remove slowing and
+ // fatigue.
bool success = false;
if (mon->del_ench(ENCH_POISON, true))
@@ -868,6 +869,12 @@ static bool _blessing_balms(monsters *mon)
if (mon->del_ench(ENCH_ROT, true))
success = true;
+ if (mon->del_ench(ENCH_SLOW, true))
+ success = true;
+
+ if (mon->del_ench(ENCH_FATIGUE, true))
+ success = true;
+
return success;
}