summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/settings/034_monster_glyphs.txt8
-rw-r--r--crawl-ref/source/stuff.cc4
2 files changed, 3 insertions, 9 deletions
diff --git a/crawl-ref/settings/034_monster_glyphs.txt b/crawl-ref/settings/034_monster_glyphs.txt
index 282d656fa1..28c1fd6f04 100644
--- a/crawl-ref/settings/034_monster_glyphs.txt
+++ b/crawl-ref/settings/034_monster_glyphs.txt
@@ -45,9 +45,6 @@ feature = orcish idol { , , darkgrey}
###########################
# orcs
-#mon_glyph = orc : lightred
-#mon_glyph = Urug : red
-#mon_glyph = orc warrior : yellow
mon_glyph = orc priest : lightgreen
mon_glyph = orc knight : lightcyan
mon_glyph = orc high priest : green
@@ -166,14 +163,11 @@ mon_glyph = Frederick : darkgrey
# feature old colour new colour
# ------- ---------- ----------
# granite statue lightgrey darkgrey
-# orcish idol darkgrey red
+# orcish idol darkgrey lightred
#
# monster old colour new colour
# ------- ---------- ----------
# orcs
-# orc lightred red
-# Urug red yellow
-# orc warrior yellow lightred
# orc priest lightgreen green
# orc knight lightcyan cyan
# orc high priest green lightgreen
diff --git a/crawl-ref/source/stuff.cc b/crawl-ref/source/stuff.cc
index 16b2f8e4e3..0e6809d9e7 100644
--- a/crawl-ref/source/stuff.cc
+++ b/crawl-ref/source/stuff.cc
@@ -1355,8 +1355,8 @@ int element_colour( int element, bool no_random )
break;
case EC_BEOGH:
- ret = (tmp_rand < 60) ? RED // plain Orc (+ orcish idol) colour
- : BROWN; // Orcish mines wall colour
+ ret = (tmp_rand < 60) ? LIGHTRED // plain Orc (+ orcish idol) colour
+ : BROWN; // Orcish mines wall colour
break;
case EC_CRYSTAL: