summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monstuff.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/monstuff.cc')
-rw-r--r--crawl-ref/source/monstuff.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc
index 63b14af650..c8e3c8b05c 100644
--- a/crawl-ref/source/monstuff.cc
+++ b/crawl-ref/source/monstuff.cc
@@ -4617,7 +4617,8 @@ static inline bool _mons_natural_regen_roll(monsters *monster)
// Do natural regeneration for monster.
static void _monster_regenerate(monsters *monster)
{
- if (monster->has_ench(ENCH_SICK))
+ if (monster->has_ench(ENCH_SICK)
+ || mons_class_flag(monster->type, M_NO_REGEN))
return;
// Non-land creatures out of their element cannot regenerate.