From 49c71962f5c6cdeb92cc341e6673f25ed9b559e8 Mon Sep 17 00:00:00 2001 From: toaster Date: Mon, 28 Nov 2022 22:29:36 +0000 Subject: [PATCH] Update linedef type 441 to only not happen in MP (or demo playback) Only areas missed from the precursor to the "multiplayer emblems" MR --- src/p_spec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_spec.c b/src/p_spec.c index 07ec1f102..b158c9dfc 100644 --- a/src/p_spec.c +++ b/src/p_spec.c @@ -2752,7 +2752,7 @@ static void P_ProcessLineSpecial(line_t *line, mobj_t *mo, sector_t *callsec) break; case 441: // Trigger unlockable - if ((!modifiedgame || savemoddata) && !(netgame || multiplayer)) + if (!(demo.playback || netgame || multiplayer)) { INT32 trigid = line->args[0];