16P Stun Nerf + Flybots bob faster

Above 8P, stun timer nerf nerfed from 17t->6t; flybots don't just orbit faster, they bob faster too.
This commit is contained in:
VelocitOni 2025-06-25 18:52:44 -04:00
parent 51abee48cd
commit 82c0aa400b
2 changed files with 2 additions and 2 deletions

View file

@ -16327,7 +16327,7 @@ void K_ApplyStun(player_t *player, mobj_t *inflictor, mobj_t *source, ATTRUNUSED
// reduce stun in games with more than 8 players
if (numPlayers > 8)
{
stunTics -= 17 * (numPlayers - 8);
stunTics -= 6 * (numPlayers - 8);
}
// 1/3 stun values in battle

View file

@ -102,7 +102,7 @@ void Obj_FlybotThink(mobj_t *flybot)
else if (mo->player->spindash)
{
speed *= 2;
//flybot->movedir += FLYBOT_BOB_FREQUENCY;
flybot->movedir += FLYBOT_BOB_FREQUENCY*2;
}
}