mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-26 15:31:03 +00:00
Allow fromnetsave to be used in P_SpawnSpecialsThatRequireObjects (missed element of the level load executor fix).
This commit is contained in:
parent
134f3b5df5
commit
78b8def506
3 changed files with 3 additions and 3 deletions
|
|
@ -4345,7 +4345,7 @@ boolean P_LoadLevel(boolean fromnetsave, boolean reloadinggamestate)
|
|||
if (!playerstarts[numcoopstarts])
|
||||
break;
|
||||
|
||||
P_SpawnSpecialsThatRequireObjects();
|
||||
P_SpawnSpecialsThatRequireObjects(fromnetsave);
|
||||
|
||||
if (!udmf)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -6905,7 +6905,7 @@ void P_SpawnSpecials(boolean fromnetsave)
|
|||
|
||||
/** Fuck polyobjects
|
||||
*/
|
||||
void P_SpawnSpecialsThatRequireObjects(void)
|
||||
void P_SpawnSpecialsThatRequireObjects(boolean fromnetsave)
|
||||
{
|
||||
size_t i;
|
||||
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ void P_SetupLevelFlatAnims(void);
|
|||
void P_InitSpecials(void);
|
||||
void P_SpawnSpecials(boolean fromnetsave);
|
||||
void P_SpawnSpecialsAfterSlopes(void);
|
||||
void P_SpawnSpecialsThatRequireObjects(void);
|
||||
void P_SpawnSpecialsThatRequireObjects(boolean fromnetsave);
|
||||
|
||||
// every tic
|
||||
void P_UpdateSpecials(void);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue