summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/spells2.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/spells2.cc b/crawl-ref/source/spells2.cc
index 99d473f0d3..b76445aad2 100644
--- a/crawl-ref/source/spells2.cc
+++ b/crawl-ref/source/spells2.cc
@@ -690,6 +690,9 @@ void cast_refrigeration(int pow)
for (int i = 0; i < MAX_MONSTERS; i++)
{
monsters* const monster = &menv[i];
+ // Note that we *do* hurt monsters which you can't see
+ // (submerged, invisible) even though you get no information
+ // about it.
if (monster->alive() && mons_near(monster))
{
// Calculate damage and apply.