follow-up: paste bit

This commit is contained in:
nhmall
2024-11-27 00:35:27 -05:00
parent ea6cdd3f39
commit 70284521e6

View File

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