Fix unadapted flag for linedef type 426

This commit is contained in:
MascaraSnake 2021-12-29 23:12:46 +01:00
parent f5cda9f64c
commit 9af28321a5

View file

@ -2664,7 +2664,7 @@ static void P_ProcessLineSpecial(line_t *line, mobj_t *mo, sector_t *callsec)
// Reset bot too.
if (bot) {
if (line->flags & ML_NOCLIMB)
if (line->args[0])
P_TeleportMove(bot, mo->x, mo->y, mo->z);
bot->momx = bot->momy = bot->momz = 1;
bot->pmomz = 0;