summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/mon-util.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/mon-util.cc b/crawl-ref/source/mon-util.cc
index c22e4d943e..de0ffc8fb3 100644
--- a/crawl-ref/source/mon-util.cc
+++ b/crawl-ref/source/mon-util.cc
@@ -5888,7 +5888,7 @@ void monsters::expose_to_element(beam_type flavour, int strength)
switch (flavour)
{
case BEAM_COLD:
- if (mons_class_flag(this->type, M_COLD_BLOOD) && coinflip())
+ if (mons_class_flag(this->type, M_COLD_BLOOD) && this->res_cold() <= 0 && coinflip())
slow_down(this, strength);
break;
default: