From 798aa2e33a74c3164b9e05245e436c27affd6604 Mon Sep 17 00:00:00 2001 From: Robert Vollmert Date: Tue, 24 Nov 2009 20:54:02 +0100 Subject: Default delay_message_clear to true (dpeg). --- crawl-ref/docs/options_guide.txt | 8 ++++---- crawl-ref/settings/init.txt | 4 ++-- crawl-ref/source/initfile.cc | 2 +- 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; -- cgit v1.2.3-54-g00ecf