summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tags.cc
diff options
context:
space:
mode:
authorNeil Moore <neil@s-z.org>2014-07-05 13:25:56 -0400
committerNeil Moore <neil@s-z.org>2014-07-05 13:28:38 -0400
commit1757ce470f8ac307fdf50e482b20f85febdffc2a (patch)
treefe1fda4ae74909120965a1ed55f5c0b53b415fde /crawl-ref/source/tags.cc
parent22d3eb9efd2b701ee88451eec8ca8dea4d1c5b72 (diff)
downloadcrawl-ref-1757ce470f8ac307fdf50e482b20f85febdffc2a.tar.gz
crawl-ref-1757ce470f8ac307fdf50e482b20f85febdffc2a.zip
Prevent DEAD_MONSTER messages for offlevel companions
Thanks to tux[qyou] for alerting us the the error.
Diffstat (limited to 'crawl-ref/source/tags.cc')
-rw-r--r--crawl-ref/source/tags.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/crawl-ref/source/tags.cc b/crawl-ref/source/tags.cc
index f446a3c0a3..e7cad918f8 100644
--- a/crawl-ref/source/tags.cc
+++ b/crawl-ref/source/tags.cc
@@ -5229,6 +5229,7 @@ static void tag_read_level_monsters(reader &th)
m.name(DESC_PLAIN, true).c_str(), m.mid,
level_id::current().describe(false, true).c_str());
monster_die(&m, KILL_RESET, -1, true, false);
+ continue;
}
#if defined(DEBUG) || defined(DEBUG_MONS_SCAN)