From 25f48fd26fd55d0e924595b49591e16fb9ee979c Mon Sep 17 00:00:00 2001 From: toaster Date: Sat, 15 Jul 2023 20:08:53 +0100 Subject: [PATCH] Add ML_BLOCKMONSTERS to P_WriteTextmap --- src/p_setup.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/p_setup.c b/src/p_setup.c index 1317f6f0b..b92c18a4c 100644 --- a/src/p_setup.c +++ b/src/p_setup.c @@ -2557,6 +2557,8 @@ static void P_WriteTextmap(void) fprintf(f, "blocking = true;\n"); if (wlines[i].flags & ML_BLOCKPLAYERS) fprintf(f, "blockplayers = true;\n"); + if (wlines[i].flags & ML_BLOCKMONSTERS) + fprintf(f, "blockmonsters = true;\n"); if (wlines[i].flags & ML_TWOSIDED) fprintf(f, "twosided = true;\n"); if (wlines[i].flags & ML_DONTPEGTOP)