From 70284521e6a6797cb31167eb04059efb00e87586 Mon Sep 17 00:00:00 2001 From: nhmall Date: Wed, 27 Nov 2024 00:35:27 -0500 Subject: [PATCH] follow-up: paste bit --- src/display.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/display.c b/src/display.c index 77dd47b47..9902040a2 100644 --- a/src/display.c +++ b/src/display.c @@ -3102,7 +3102,7 @@ check_pos(coordxy x, coordxy y, int which) return which; type = levl[x][y].typ; /* Everything below POOL, excluding TREE */ - if (IS_STWALL(type) || (type) == CORR || (type) == SCORR || IS_SDOOR(type)) + if (IS_STWALL(type) || type == CORR || type == SCORR || IS_SDOOR(type)) return which; return 0; }