From 5b1a28616877a2f8f3b1b2562c02fca645fcc99f Mon Sep 17 00:00:00 2001 From: Matthew Cline Date: Fri, 30 Oct 2009 01:23:33 -0700 Subject: Interrupt less often when repeating wiz commands Interrupt/cancel command repetition less often when repeating a wizard command. --- crawl-ref/source/acr.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'crawl-ref/source/acr.cc') diff --git a/crawl-ref/source/acr.cc b/crawl-ref/source/acr.cc index 2b64b5c065..1461423479 100644 --- a/crawl-ref/source/acr.cc +++ b/crawl-ref/source/acr.cc @@ -2792,8 +2792,11 @@ void world_reacts() viewwindow(true, false); - if (you.cannot_act() && any_messages()) + if (you.cannot_act() && any_messages() + && crawl_state.repeat_cmd != CMD_WIZARD) + { more(); + } #if defined(DEBUG_TENSION) || defined(DEBUG_RELIGION) if (you.religion != GOD_NO_GOD) -- cgit v1.2.3-54-g00ecf