From 916a89eb14634f428ea16b873377634abfd03df1 Mon Sep 17 00:00:00 2001 From: Adam Borowski Date: Thu, 22 Oct 2009 11:40:10 +0200 Subject: Make the out of time flash lightblue, cyan is taken. --- crawl-ref/source/godabil.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'crawl-ref/source/godabil.cc') diff --git a/crawl-ref/source/godabil.cc b/crawl-ref/source/godabil.cc index 1fcc6bfbdf..7414259429 100644 --- a/crawl-ref/source/godabil.cc +++ b/crawl-ref/source/godabil.cc @@ -565,18 +565,19 @@ void chronos_time_step(int pow) // pow is the number of turns to skip coord_def old_pos = you.pos(); mpr("You step out of the flow of time."); - you.flash_colour = LIGHTCYAN; + you.flash_colour = LIGHTBLUE; viewwindow(true, true); you.moveto(coord_def(0, 0)); you.duration[DUR_TIME_STEP] = pow; you.time_taken = 10; - while(you.duration[DUR_TIME_STEP]-- > 0) + do { run_environment_effects(); handle_monsters(); manage_clouds(); } + while (--you.duration[DUR_TIME_STEP] > 0); // Update corpses, etc. This does also shift monsters, but only by a tiny bit. update_level(pow*10); -- cgit v1.2.3-54-g00ecf