From c76ae9a4fd878826312202697b38ac2210fd14d2 Mon Sep 17 00:00:00 2001 From: James R Date: Mon, 4 Jan 2021 18:55:33 -0800 Subject: [PATCH] Actually put it on line type 81 --- src/p_map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_map.c b/src/p_map.c index d6a3044cb..898ee0a49 100644 --- a/src/p_map.c +++ b/src/p_map.c @@ -1636,7 +1636,7 @@ static boolean P_IsLineBlocking(const line_t *ld, const mobj_t *thing) (ld->flags & ML_IMPASSABLE) || // block objects from moving through this linedef. (thing->player && !thing->player->spectator && ld->flags & ML_BLOCKPLAYERS) || // SRB2Kart: Only block players, not items - ((thing->flags & (MF_ENEMY|MF_BOSS)) && ld->special == 11) // case 11: block monsters only + ((thing->flags & (MF_ENEMY|MF_BOSS)) && ld->special == 81) // case 81: block monsters only ); } }