From e0aa0847ce24c528916f79cb4a33a577dee29130 Mon Sep 17 00:00:00 2001 From: Jacob Mandelson Date: Sat, 21 Jun 2025 21:49:27 -0700 Subject: [PATCH] Don't specially color the trees of the Haunted Woods. --- celldrawer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/celldrawer.cpp b/celldrawer.cpp index 0a352176..ab88d2d3 100644 --- a/celldrawer.cpp +++ b/celldrawer.cpp @@ -510,8 +510,8 @@ void celldrawer::setcolors() { if(c->monst == moFriendlyGhost) fcol = gradient(fcol, fghostcolor(c), 0, .5, 1); - if(c->wall == waSmallTree) wcol = 0x004000; - else if(c->wall == waBigTree) wcol = 0x008000; + /* if(c->wall == waSmallTree) wcol = 0x006000; + else if(c->wall == waBigTree) wcol = 0x008000; */ } }