summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/defines.h
diff options
context:
space:
mode:
authorennewalker <ennewalker@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-24 04:23:58 +0000
committerennewalker <ennewalker@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-24 04:23:58 +0000
commit38e827333b1b54e7388162ba5f9db5ef308fb96c (patch)
tree631c1c0c9e95762fdd30308bb9f52cb69d67336c /crawl-ref/source/defines.h
parent340d13659bcd11ee831c7a238958118944e8e1d5 (diff)
downloadcrawl-ref-38e827333b1b54e7388162ba5f9db5ef308fb96c.tar.gz
crawl-ref-38e827333b1b54e7388162ba5f9db5ef308fb96c.zip
Monster list fixes:
* get_visible_monsters() now just silently returns descriptions * _mpr_monsters() now handles all printing of information * monster list is now written to a separate monster region (GOTO_MLIST) * added asserts to libutil that will catch behavior that breaks tile version * turned off monster list for tile version (until implemented) git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3851 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/defines.h')
-rw-r--r--crawl-ref/source/defines.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/crawl-ref/source/defines.h b/crawl-ref/source/defines.h
index d171254ade..a028036591 100644
--- a/crawl-ref/source/defines.h
+++ b/crawl-ref/source/defines.h
@@ -318,6 +318,7 @@ enum GotoRegion
GOTO_MSG, // cprintf > message
GOTO_STAT, // cprintf > character status
GOTO_DNGN, // cprintf > dungeon screen
+ GOTO_MLIST,// cprintf > monster list
GOTO_LAST // cprintf > last active region or CRT, if none
};