0
0
Fork 0
mirror of https://git.do.srb2.org/STJr/SRB2.git synced 2025-03-24 11:42:03 +00:00

P_WriteTextmap: Add warning for linedef type 61

This commit is contained in:
MascaraSnake 2022-01-13 22:14:41 +01:00
parent b8524fc741
commit 1fdfb6ba6e

View file

@ -2112,6 +2112,13 @@ static void P_WriteTextmap(void)
case 51:
CONS_Alert(CONS_WARNING, M_GetText("Linedef %d has type %d, which is not supported in UDMF.\n"), i, wlines[i].special);
break;
case 61:
if (wlines[i].flags & ML_MIDSOLID)
continue;
if (!wlines[i].args[1])
continue;
CONS_Alert(CONS_WARNING, M_GetText("Linedef %d with crusher type 61 rises twice as fast on spawn. This behavior is not supported in UDMF.\n"), i);
break;
case 76:
if (freetag == (mtag_t)MAXTAGS)
{