From be480eead042dacf5c814b9269cef19ec90d093c Mon Sep 17 00:00:00 2001 From: MascaraSnake Date: Tue, 21 Sep 2021 12:59:20 +0200 Subject: [PATCH] Linedef type 464: Re-add mobjtype check that I accidentally removed --- src/p_spec.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/p_spec.c b/src/p_spec.c index 8a8997697..50b0a9125 100644 --- a/src/p_spec.c +++ b/src/p_spec.c @@ -3626,6 +3626,9 @@ static void P_ProcessLineSpecial(line_t *line, mobj_t *mo, sector_t *callsec) if (!mo2) continue; + if (mo2->type != MT_EGGTRAP) + continue; + if (mo2->thinker.function.acp1 == (actionf_p1)P_RemoveThinkerDelayed) continue;