From 4ea301d9910996cd3ef97a56b3cba86fd95685bb Mon Sep 17 00:00:00 2001 From: dshaligram Date: Mon, 5 Feb 2007 12:05:42 +0000 Subject: [1632567] Greedy explore now tries to do the Right Thing with mimics. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@915 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/enum.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/enum.h') diff --git a/crawl-ref/source/enum.h b/crawl-ref/source/enum.h index 456626204f..15fb845e5c 100644 --- a/crawl-ref/source/enum.h +++ b/crawl-ref/source/enum.h @@ -2306,8 +2306,7 @@ enum mon_flight_type FLY_LEVITATION // doesn't require physical effort }; -// Note: These are currently stored in chars!!! -// Need to fix struct monsters and the savefile if you want more. +// These are now saved in an unsigned long in the monsters struct. enum monster_flag_type { MF_CREATED_FRIENDLY = 0x01, // no benefit from killing @@ -2318,7 +2317,10 @@ enum monster_flag_type MF_INTERESTING = 0x20, // Player finds monster interesting MF_SEEN = 0x40, // Player already seen monster - MF_DIVINE_PROTECTION = 0x80 // Monster has divine protection. + MF_DIVINE_PROTECTION = 0x80, // Monster has divine protection. + + MF_KNOWN_MIMIC = 0x100 // Mimic that has taken a swing at the PC, + // or that the player has inspected with ? }; enum mon_dam_level_type -- cgit v1.2.3-54-g00ecf