summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/output.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index a169dee5fa..958ef1f2b4 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -1059,6 +1059,9 @@ _print_next_monster_desc(const std::vector<monster_pane_info>& mons, int& start)
textcolor(glyph_color);
cprintf( stringize_glyph(glyph).c_str() );
++ printed;
+ // Printing too many looks pretty bad, though.
+ if (i_mon > 6)
+ break;
}
textcolor(LIGHTGREY);