summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/stuff.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-29 14:11:07 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-29 14:11:07 +0000
commita2f0ab5525c06209f40a011bc7080c8b7d69b5e3 (patch)
tree4126d3ec969f06f62620eb706b8da6017f8b0eb7 /crawl-ref/source/stuff.cc
parent8c38a749feba7593d146377ac6e4b090f8228e64 (diff)
downloadcrawl-ref-a2f0ab5525c06209f40a011bc7080c8b7d69b5e3.tar.gz
crawl-ref-a2f0ab5525c06209f40a011bc7080c8b7d69b5e3.zip
Add color-related fixes: orcish idols are now consistently described as
lightred, and Beogh altars use lightred instead of red now, as that's the current color for plain orcs. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6219 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/stuff.cc')
-rw-r--r--crawl-ref/source/stuff.cc4
1 files changed, 2 insertions, 2 deletions
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: