mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-22 06:32:48 +00:00
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:
parent
51abee48cd
commit
82c0aa400b
2 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue