summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/colour.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-06-10 21:28:39 +0200
committerAdam Borowski <kilobyte@angband.pl>2013-06-10 22:06:28 +0200
commitab48cd3120a1e5f2ec6d95d422134bf2517c7678 (patch)
treea7efb70571f9c00b87499609fcfa6ada968cb6c1 /crawl-ref/source/colour.cc
parent75fae4535ca96717ac92a29b6caa9ab460859d07 (diff)
downloadcrawl-ref-ab48cd3120a1e5f2ec6d95d422134bf2517c7678.tar.gz
crawl-ref-ab48cd3120a1e5f2ec6d95d422134bf2517c7678.zip
Make elven walls even more eye-gouging, but less stony.
This shed next repainting, badly. This is the least change from status quo, which doesn't make it good.
Diffstat (limited to 'crawl-ref/source/colour.cc')
-rw-r--r--crawl-ref/source/colour.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/colour.cc b/crawl-ref/source/colour.cc
index cc1ccde42b..3d9a7a44a8 100644
--- a/crawl-ref/source/colour.cc
+++ b/crawl-ref/source/colour.cc
@@ -145,7 +145,7 @@ static int _etc_rock(int, const coord_def& loc)
static int _etc_elven_brick(int, const coord_def& loc)
{
if ((loc.x + loc.y) % 2)
- return LIGHTGREY;
+ return WHITE;
else
{
if ((loc.x / 2 + loc.y / 2) % 2)