Add ML_BLOCKMONSTERS to P_WriteTextmap

This commit is contained in:
toaster 2023-07-15 20:08:53 +01:00
parent 459e3684ab
commit 25f48fd26f

View file

@ -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)