summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/item_use.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/item_use.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/item_use.cc')
-rw-r--r--crawl-ref/source/item_use.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/item_use.cc b/crawl-ref/source/item_use.cc
index 8e3e804e98..c2d8273be1 100644
--- a/crawl-ref/source/item_use.cc
+++ b/crawl-ref/source/item_use.cc
@@ -2033,7 +2033,7 @@ void setup_missile_beam(const actor *agent, bolt &beam, item_def &item,
beam.flavour = BEAM_CHAOS;
beam.name = "chaos";
- beam.colour = EC_RANDOM;
+ beam.colour = ETC_RANDOM;
ammo.special = SPMSL_CHAOS;
}