From b587b4b5742fe9568a6f625f0ca7b90d4282ee8e Mon Sep 17 00:00:00 2001 From: Antonio Martinez Date: Thu, 25 Sep 2025 18:02:19 -0400 Subject: [PATCH] Fix Eggmark not activating on players in precisely timed hitlag --- src/p_inter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_inter.c b/src/p_inter.c index 21446414d..69c0b5665 100644 --- a/src/p_inter.c +++ b/src/p_inter.c @@ -4050,7 +4050,7 @@ boolean P_DamageMobj(mobj_t *target, mobj_t *inflictor, mobj_t *source, INT32 da } } - if (inflictor && !P_MobjWasRemoved(inflictor) && inflictor->momx == 0 && inflictor->momy == 0 && inflictor->momz == 0) + if (inflictor && !P_MobjWasRemoved(inflictor) && inflictor->momx == 0 && inflictor->momy == 0 && inflictor->momz == 0 && inflictor->type != MT_SPBEXPLOSION) { // Probably a map hazard. allowcombo = false;