summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/stuff.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/stuff.cc')
-rw-r--r--crawl-ref/source/stuff.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/crawl-ref/source/stuff.cc b/crawl-ref/source/stuff.cc
index e9b97624ea..bb9c8214dd 100644
--- a/crawl-ref/source/stuff.cc
+++ b/crawl-ref/source/stuff.cc
@@ -1098,6 +1098,10 @@ int element_colour( int element, bool no_random )
ret = LIGHTGREY;
break;
+ case EC_MIST:
+ ret = tmp_rand < 100? CYAN : BLUE;
+ break;
+
case EC_RANDOM:
ret = 1 + random2(15); // always random
break;