summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/behold.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/behold.cc')
-rw-r--r--crawl-ref/source/behold.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/behold.cc b/crawl-ref/source/behold.cc
index f7286ebdbb..1cf935e0fc 100644
--- a/crawl-ref/source/behold.cc
+++ b/crawl-ref/source/behold.cc
@@ -233,6 +233,9 @@ void player::update_beholder(const monster* mon)
if (beholders[i] == mon->mindex())
{
beholders.erase(beholders.begin() + i);
+ // Do this dance to clear the duration before printing messages
+ // (#8844), but still print all messages in the right order.
+ _removed_beholder(true);
_removed_beholder_msg(mon);
_removed_beholder();
return;