From 86d488e3efa0b1d8ec12223527235e3ef3a5fec2 Mon Sep 17 00:00:00 2001 From: dshaligram Date: Wed, 31 Dec 2008 08:41:27 +0000 Subject: Add arena mode, activated on the command-line by 'crawl -arena "monster v monster"' (eg: crawl -arena "Sigmund v Jessica") to let monsters fight each other undisturbed by the player. Good to examine monster AI and monster behaviour when the player is AWOL. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8059 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/state.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crawl-ref/source/state.cc') diff --git a/crawl-ref/source/state.cc b/crawl-ref/source/state.cc index f6eafa288b..d076bc8ebf 100644 --- a/crawl-ref/source/state.cc +++ b/crawl-ref/source/state.cc @@ -25,7 +25,7 @@ game_state::game_state() : mouse_enabled(false), waiting_for_command(false), terminal_resized(false), io_inited(false), need_save(false), saving_game(false), updating_scores(false), seen_hups(0), - map_stat_gen(false), unicode_ok(false), glyph2strfn(NULL), + map_stat_gen(false), arena(false), unicode_ok(false), glyph2strfn(NULL), multibyte_strlen(NULL), terminal_resize_handler(NULL), terminal_resize_check(NULL), doing_prev_cmd_again(false), prev_cmd(CMD_NO_CMD), repeat_cmd(CMD_NO_CMD), cmd_repeat_count(0), -- cgit v1.2.3-54-g00ecf