Min weight stun 10 sec -> 8 sec

This commit is contained in:
Antonio Martinez 2025-09-24 16:58:14 -04:00
parent fc4a2e9f80
commit cef307816d

View file

@ -17473,7 +17473,7 @@ fixed_t K_TeamComebackMultiplier(player_t *player)
void K_ApplyStun(player_t *player, mobj_t *inflictor, mobj_t *source, ATTRUNUSED INT32 damage, ATTRUNUSED UINT8 damagetype)
{
#define BASE_STUN_TICS_MIN (4 * TICRATE)
#define BASE_STUN_TICS_MAX (10 * TICRATE)
#define BASE_STUN_TICS_MAX (8 * TICRATE)
#define MAX_STUN_REDUCTION (FRACUNIT/2)
#define STUN_REDUCTION_DISTANCE (20000)
INT32 stunTics = 0;