summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/abyss.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-17 10:26:02 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-17 10:26:02 +0000
commita298a872647d9beb0d30d71472a0e08e83df1440 (patch)
treed2716e55876a3681c3a78aa7930576c1cd54d8d2 /crawl-ref/source/abyss.cc
parent77e8bbcc1dd439c368a9deb653daed4a6fe82851 (diff)
downloadcrawl-ref-a298a872647d9beb0d30d71472a0e08e83df1440.tar.gz
crawl-ref-a298a872647d9beb0d30d71472a0e08e83df1440.zip
Change elemental type colour enum to use ETC_ prefix instead of EC_
prefix, which was conflicting with the Abyssal entry cause enum. Fixes [2605869]. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9110 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/abyss.cc')
-rw-r--r--crawl-ref/source/abyss.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/abyss.cc b/crawl-ref/source/abyss.cc
index 9c51074f42..81628ab889 100644
--- a/crawl-ref/source/abyss.cc
+++ b/crawl-ref/source/abyss.cc
@@ -936,7 +936,7 @@ bool lugonu_corrupt_level(int power)
mprf(MSGCH_GOD, "Lugonu's Hand of Corruption reaches out!");
- you.flash_colour = EC_MUTAGENIC;
+ you.flash_colour = ETC_MUTAGENIC;
viewwindow(true, false);
_initialise_level_corrupt_seeds(power);
@@ -957,7 +957,7 @@ bool lugonu_corrupt_level(int power)
_corrupt_level_features(*abyssal);
run_corruption_effects(300);
- you.flash_colour = EC_MUTAGENIC;
+ you.flash_colour = ETC_MUTAGENIC;
viewwindow(true, false);
// Allow extra time for the flash to linger.
delay(1000);