summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2007-08-24 11:39:43 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2007-08-24 11:39:43 +0000
commitcb76f80426af8941a42b7346aacba92529e41338 (patch)
treeae73182eb6be8c941aaef6683c5a539124b83552 /crawl-ref/source/player.cc
parenta42cf252322e22af17e24e3f5e8f2f7a35cc0bd7 (diff)
downloadcrawl-ref-cb76f80426af8941a42b7346aacba92529e41338.tar.gz
crawl-ref-cb76f80426af8941a42b7346aacba92529e41338.zip
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
Diffstat (limited to 'crawl-ref/source/player.cc')
-rw-r--r--crawl-ref/source/player.cc5
1 files changed, 5 insertions, 0 deletions
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);
}