summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/abyss.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/abyss.cc')
-rw-r--r--crawl-ref/source/abyss.cc9
1 files changed, 4 insertions, 5 deletions
diff --git a/crawl-ref/source/abyss.cc b/crawl-ref/source/abyss.cc
index 125787719a..6708ef758c 100644
--- a/crawl-ref/source/abyss.cc
+++ b/crawl-ref/source/abyss.cc
@@ -935,9 +935,9 @@ bool lugonu_corrupt_level(int power)
if (is_level_incorruptible())
return (false);
- mprf(MSGCH_GOD, "Lugonu's Hand of Corruption reaches out!");
+ mpr("Lugonu's Hand of Corruption reaches out!", MSGCH_GOD);
- you.flash_colour = ETC_MUTAGENIC;
+ you.flash_colour = MAGENTA;
viewwindow(true, false);
_initialise_level_corrupt_seeds(power);
@@ -958,11 +958,10 @@ bool lugonu_corrupt_level(int power)
_corrupt_level_features(*abyssal);
run_corruption_effects(300);
- you.flash_colour = ETC_MUTAGENIC;
- viewwindow(true, false);
+#ifndef USE_TILE
// Allow extra time for the flash to linger.
delay(1000);
- viewwindow(true, false);
+#endif
return (true);
}