From 6c3ccff88757d5f09b2e829119d2c45895115b25 Mon Sep 17 00:00:00 2001 From: Fabian Greffrath Date: Thu, 23 Nov 2023 21:27:08 +0100 Subject: [PATCH] do not highlight monster-only teleporter lines --- src/am_map.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/am_map.c b/src/am_map.c index 9c54eca3..25d716c4 100644 --- a/src/am_map.c +++ b/src/am_map.c @@ -1658,8 +1658,8 @@ static void AM_drawWalls(void) if ( mapcolor_tele && !(lines[i].flags & ML_SECRET) && - (lines[i].special == 39 || lines[i].special == 97 || - lines[i].special == 125 || lines[i].special == 126) + (lines[i].special == 39 || lines[i].special == 97 /* || + lines[i].special == 125 || lines[i].special == 126 */ ) ) { // teleporters AM_drawMline(&l, mapcolor_tele);