From c37c870f18d8171cefa771f6b9b0534601e15f6c Mon Sep 17 00:00:00 2001 From: Robert Vollmert Date: Sat, 21 Nov 2009 23:22:33 +0100 Subject: Restore redrawing when resting. This means that you'll see allies moving, summons disappearing and clouds changing while resting, like before (console) or newly (tiles). --- crawl-ref/source/view.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crawl-ref/source/view.cc') diff --git a/crawl-ref/source/view.cc b/crawl-ref/source/view.cc index 8dfd504f3e..c8d154f888 100644 --- a/crawl-ref/source/view.cc +++ b/crawl-ref/source/view.cc @@ -885,7 +885,7 @@ void viewwindow(bool monster_updates, bool show_updates) bool run_dont_draw = you.running && Options.travel_delay < 0 && (!you.running.is_explore() || Options.explore_delay < 0); - if (run_dont_draw || you.asleep() || is_resting()) + if (run_dont_draw || you.asleep()) return; cursor_control cs(false); -- cgit v1.2.3-54-g00ecf