summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-act.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/mon-act.cc')
-rw-r--r--crawl-ref/source/mon-act.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/crawl-ref/source/mon-act.cc b/crawl-ref/source/mon-act.cc
index 4e347b9fe8..e0b9dfbe94 100644
--- a/crawl-ref/source/mon-act.cc
+++ b/crawl-ref/source/mon-act.cc
@@ -1578,10 +1578,13 @@ static void _khufu_drop_tomb(monsters *monster)
}
}
if (count)
- if (mons_near(monster))
+ {
+ calc_show_los();
+ if (monster->observable())
mpr("The walls disappear!");
else
mpr("You hear a deep rumble.");
+ }
monster->number = 0;
monster->lose_energy(EUT_SPELL);
}