From 025ebd85426f08f24e8c197c52d44db250498678 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Wed, 29 May 2019 01:22:52 +0200 Subject: [PATCH] items on boats are now colored as items --- graph.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graph.cpp b/graph.cpp index 5aab5089..ad8fb1cf 100644 --- a/graph.cpp +++ b/graph.cpp @@ -6077,7 +6077,7 @@ void drawcell(cell *c, transmatrix V, int spinv, bool mirrored) { if(!it) { if(c->wall == waNone || isWatery(c)) asciicol = fcol; } - if(c->wall == waBoat) asciicol = 0xC06000; + if(c->wall == waBoat && !it) asciicol = 0xC06000; if(c->wall == waArrowTrap) asciicol = trapcol[c->wparam & 3];