items on boats are now colored as items

This commit is contained in:
Zeno Rogue 2019-05-29 01:22:52 +02:00
parent 867b3bf838
commit 025ebd8542
1 changed files with 1 additions and 1 deletions

View File

@ -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];