mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Merge branch 'stability-fix-ports' into 'master'
Stability fix ports See merge request KartKrew/Kart!670
This commit is contained in:
commit
1cf1643233
3 changed files with 6 additions and 3 deletions
|
|
@ -4943,8 +4943,11 @@ static void GetPackets(void)
|
|||
node = (SINT8)doomcom->remotenode;
|
||||
|
||||
if (netbuffer->packettype == PT_CLIENTJOIN && server)
|
||||
{
|
||||
if (!levelloading) // Otherwise just ignore
|
||||
{
|
||||
HandleConnect(node);
|
||||
}
|
||||
continue;
|
||||
}
|
||||
if (node == servernode && client && cl_mode != CL_SEARCHING)
|
||||
|
|
|
|||
|
|
@ -24216,7 +24216,7 @@ mobjinfo_t mobjinfo[NUMMOBJTYPES] =
|
|||
sfx_tossed, // seesound
|
||||
8, // reactiontime
|
||||
sfx_None, // attacksound
|
||||
256*FRACUNIT, // painstate
|
||||
S_NULL, // painstate
|
||||
100, // painchance
|
||||
sfx_None, // painsound
|
||||
S_NULL, // meleestate
|
||||
|
|
|
|||
|
|
@ -9529,7 +9529,7 @@ void K_AdjustPlayerFriction(player_t *player)
|
|||
}
|
||||
|
||||
// Wipeout slowdown
|
||||
if (player->spinouttimer && player->wipeoutslow)
|
||||
if (player->speed > 0 && player->spinouttimer && player->wipeoutslow)
|
||||
{
|
||||
if (player->offroad)
|
||||
player->mo->friction -= 4912;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue