summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-act.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2009-11-11 00:04:36 +0100
committerAdam Borowski <kilobyte@angband.pl>2009-11-11 00:04:36 +0100
commite903325064ab66fe104233a8f9cd7c9272885afc (patch)
tree83997740f83c4e63d0d415461a5eb268554036fa /crawl-ref/source/mon-act.cc
parentdee99078b0772db95b6942416ede2b38d8c37ba5 (diff)
downloadcrawl-ref-e903325064ab66fe104233a8f9cd7c9272885afc.tar.gz
crawl-ref-e903325064ab66fe104233a8f9cd7c9272885afc.zip
Tomb of Doroklohe: delete clouds at the walls; proper message if the tomb is visible while being dropped.
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);
}