From cb76f80426af8941a42b7346aacba92529e41338 Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Fri, 24 Aug 2007 11:39:43 +0000 Subject: Finally fixed pickup.lua to work as intended (I hope). Other small changes: - default yesno for renouncing religion to 'n' - plants and fungi aren't "interesting", even when OOD - added WIZ designator to listed saved characters git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2031 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/player.cc | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'crawl-ref/source/player.cc') diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc index be70ca81cd..0aa2a822bf 100644 --- a/crawl-ref/source/player.cc +++ b/crawl-ref/source/player.cc @@ -4964,6 +4964,11 @@ std::string player::short_desc() const desc += " "; desc += class_name; +#ifdef WIZARD + if (wizard) + desc += " (WIZ)"; +#endif + return (desc); } -- cgit v1.2.3-54-g00ecf