From d035522cf4d03a1420e88eff05b98b157cccd2a1 Mon Sep 17 00:00:00 2001 From: dshaligram Date: Fri, 2 Nov 2007 13:36:20 +0000 Subject: Fixed broken MHITNOT/MHITYOU, changed handling of DUR_SLOW to be like DUR_HASTE, reduced paralysis duration for crystal balls of fixation. MHITNOT fix breaks saves. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2725 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/defines.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'crawl-ref/source/defines.h') diff --git a/crawl-ref/source/defines.h b/crawl-ref/source/defines.h index 823f9cbca1..f846c167cc 100644 --- a/crawl-ref/source/defines.h +++ b/crawl-ref/source/defines.h @@ -57,6 +57,11 @@ // non-monster for mgrd[][] -- (MNST + 1) {dlb}: #define NON_MONSTER (MAX_MONSTERS + 1) +// (MNG) -- for a reason! see usage {dlb}: +#define MHITNOT (MAX_MONSTERS + 1) +// (MNG + 1) -- for a reason! see usage {dlb}: +#define MHITYOU (MAX_MONSTERS + 2) + #define MAX_SUBTYPES 50 // max size of item list {dlb}: @@ -208,11 +213,6 @@ const int LABYRINTH_BORDER = 12; #define mgrd env.mgrid #define igrd env.igrid -// (MNG) -- for a reason! see usage {dlb}: -#define MHITNOT 201 -// (MNG + 1) -- for a reason! see usage {dlb}: -#define MHITYOU 202 - // colors, such pretty colors ... #ifndef DOS #define BLACK 0 -- cgit v1.2.3-54-g00ecf