Don't apply any stunned tics on ring sting

This commit is contained in:
Lach 2025-06-19 22:14:41 +10:00 committed by AJ Martinez
parent 2c11aa36c3
commit f24a5db5d2

View file

@ -3487,7 +3487,10 @@ boolean P_DamageMobj(mobj_t *target, mobj_t *inflictor, mobj_t *source, INT32 da
} }
// Apply stun! // Apply stun!
if (damagetype != DMG_STING)
{
K_ApplyStun(player, inflictor, source, damage, damagetype); K_ApplyStun(player, inflictor, source, damage, damagetype);
}
K_DefensiveOverdrive(target->player); K_DefensiveOverdrive(target->player);
} }