summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/state.cc
diff options
context:
space:
mode:
authorennewalker <ennewalker@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-28 05:31:36 +0000
committerennewalker <ennewalker@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-28 05:31:36 +0000
commit17d51dec2e404928c52bd4358c66703285f1eb0f (patch)
tree0dfd58f79f2359a887fbb94a65c68d33b426f324 /crawl-ref/source/state.cc
parente7c257339952a377b86b78e88397e35c12851a87 (diff)
downloadcrawl-ref-17d51dec2e404928c52bd4358c66703285f1eb0f.tar.gz
crawl-ref-17d51dec2e404928c52bd4358c66703285f1eb0f.zip
* Monster list is now placed to the left of the view if the terminal is wide enough to make better use of available space.
* Added init.txt options for monster list placement. mlist_min_height - minimum items in the monster list (default: 5) mlist_force_inline - force the monster list to be between hud and messages * Fixed some (but not all) problems with the monster list being updated properly when monsters appear. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3909 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/state.cc')
-rw-r--r--crawl-ref/source/state.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/state.cc b/crawl-ref/source/state.cc
index 1d86dc1862..b3c21da5ce 100644
--- a/crawl-ref/source/state.cc
+++ b/crawl-ref/source/state.cc
@@ -19,6 +19,7 @@
#include "menu.h" // For print_formatted_paragraph()
#include "message.h"
#include "mon-util.h"
+#include "output.h"
#include "player.h"
#include "state.h"
#include "tutorial.h"
@@ -205,6 +206,8 @@ bool interrupt_cmd_repeat( activity_interrupt_type ai,
formatted_mpr(fs, MSGCH_WARN);
#endif
+ update_monster_pane();
+
return true;
}