summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2009-11-24 20:54:02 +0100
committerRobert Vollmert <rvollmert@gmx.net>2009-11-24 20:54:02 +0100
commit798aa2e33a74c3164b9e05245e436c27affd6604 (patch)
tree59bc9db18338643ea4ce9e77fa507bef321c2242
parent03d1923a5426200d75268a94e6dc63bd950237ae (diff)
downloadcrawl-ref-798aa2e33a74c3164b9e05245e436c27affd6604.tar.gz
crawl-ref-798aa2e33a74c3164b9e05245e436c27affd6604.zip
Default delay_message_clear to true (dpeg).
-rw-r--r--crawl-ref/docs/options_guide.txt8
-rw-r--r--crawl-ref/settings/init.txt4
-rw-r--r--crawl-ref/source/initfile.cc2
3 files changed, 7 insertions, 7 deletions
diff --git a/crawl-ref/docs/options_guide.txt b/crawl-ref/docs/options_guide.txt
index f9abc58284..93d2cac83f 100644
--- a/crawl-ref/docs/options_guide.txt
+++ b/crawl-ref/docs/options_guide.txt
@@ -1277,10 +1277,10 @@ status_caption_colour = brown
Sets the colour that is used to display the captions in the status
area (for instance the "Health:" in "Health: 10/10").
-delay_message_clear = false
- Setting this option to true will delay the clearing of messages
- until the message space is full (default is false which results
- in clearing between player actions).
+delay_message_clear = true
+ Setting this option to false will cause messages to cleared
+ between player actions (default is false which will delay the
+ clearing of messages until the message space is full).
show_inventory_weights = false
When this is set to true, inventory listings will mention the
diff --git a/crawl-ref/settings/init.txt b/crawl-ref/settings/init.txt
index d345f58f2f..15fbe56cf3 100644
--- a/crawl-ref/settings/init.txt
+++ b/crawl-ref/settings/init.txt
@@ -16,7 +16,7 @@
# use_old_selection_order = true
# always_confirm_butcher = true
# target_unshifted_dirs = true
-
+# delay_message_clear = false
# Crawl Init file
#
@@ -250,7 +250,7 @@ sort_menus = inv: true : equipped, freshness, charged
# mlist_targetting = true
# show_gold_turns = true
-# delay_message_clear = true
+# delay_message_clear = false
# show_inventory_weights = true
# item_stack_summary_minimum = 5
# list_rotten = false
diff --git a/crawl-ref/source/initfile.cc b/crawl-ref/source/initfile.cc
index 1749324e88..76431c8238 100644
--- a/crawl-ref/source/initfile.cc
+++ b/crawl-ref/source/initfile.cc
@@ -694,7 +694,7 @@ void game_options::reset_options()
// [ds] Grumble grumble.
auto_list = true;
- delay_message_clear = false;
+ delay_message_clear = true;
pickup_dropped = false;
pickup_thrown = true;