From f7e3ea76d1b9ef3533acdd977d2e874891df312e Mon Sep 17 00:00:00 2001 From: James R Date: Wed, 17 Jan 2024 20:27:57 -0800 Subject: [PATCH] Fix Mine omega combo (instant death) --- src/p_inter.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/p_inter.c b/src/p_inter.c index 79e8fda62..a2954e8ca 100644 --- a/src/p_inter.c +++ b/src/p_inter.c @@ -2830,6 +2830,15 @@ static boolean P_FlashingException(const player_t *player, const mobj_t *inflict return false; } + if (inflictor->type == MT_SSMINE) + { + // Mine's first hit is DMG_EXPLODE. + // Afterward, it leaves a spinout hitbox which remains for a short period. + // If the spinout hitbox ignored flashing tics, you would be combod every tic and die instantly. + // DMG_EXPLODE already ignores flashing tics (correct behavior). + return false; + } + if (!P_IsKartItem(inflictor->type) && inflictor->type != MT_PLAYER) { // Exception only applies to player items.