From c319b212cbe4a79fdbc4e3efac8530d1e9ffab6f Mon Sep 17 00:00:00 2001 From: haranp Date: Wed, 25 Apr 2007 20:32:48 +0000 Subject: Various cleanups. Also fixed bug 1703500, inventory letters appearing twice until save/restore. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1371 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/enum.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crawl-ref/source/enum.h') diff --git a/crawl-ref/source/enum.h b/crawl-ref/source/enum.h index 48a85aa4c2..80046dc70b 100644 --- a/crawl-ref/source/enum.h +++ b/crawl-ref/source/enum.h @@ -1455,7 +1455,7 @@ enum item_status_flag_type // per item flags: ie. ident status, cursed status enum item_description_type { - IDESC_WANDS, + IDESC_WANDS = 0, IDESC_POTIONS, IDESC_SCROLLS, // special field (like the others) IDESC_RINGS, @@ -3613,7 +3613,7 @@ enum unarmed_attack_type enum undead_state_type // you.is_undead { - US_ALIVE, // 0 + US_ALIVE = 0, US_HUNGRY_DEAD, US_UNDEAD }; -- cgit v1.2.3-54-g00ecf