From e8788817e708c9a42c568ec4d8dd07697d0191b8 Mon Sep 17 00:00:00 2001 From: pauldubois Date: Mon, 7 Apr 2008 08:53:06 +0000 Subject: Don't print PPPPPPPPPPPPPPPPPPPPPPP 32 plants limit the number of glyphs to 6 (kind of arbitrary) git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4093 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/output.cc | 3 +++ 1 file changed, 3 insertions(+) (limited to 'crawl-ref/source/output.cc') 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& 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); -- cgit v1.2.3-54-g00ecf