mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-04-03 17:01:19 +00:00
do not run P_RunLevelLoadExecutors on gamestate reload
Prevents spam and most likely some issues on certain maps
This commit is contained in:
parent
a1874036f1
commit
aa8e8e740e
2 changed files with 4 additions and 3 deletions
|
@ -3168,7 +3168,7 @@ boolean P_SetupLevel(boolean skipprecip, boolean reloadinggamestate)
|
|||
globalweather = mapheaderinfo[gamemap-1]->weather;
|
||||
|
||||
// set up world state
|
||||
P_SpawnSpecials(fromnetsave);
|
||||
P_SpawnSpecials(fromnetsave, reloadinggamestate);
|
||||
|
||||
if (loadprecip) // ugly hack for P_NetUnArchiveMisc (and P_LoadNetGame)
|
||||
P_SpawnPrecipitation();
|
||||
|
|
|
@ -5689,7 +5689,7 @@ static void P_RunLevelLoadExecutors(void)
|
|||
* as they'll just be erased by UnArchiveThinkers.
|
||||
* \sa P_SpawnPrecipitation, P_SpawnFriction, P_SpawnPushers, P_SpawnScrollers
|
||||
*/
|
||||
void P_SpawnSpecials(INT32 fromnetsave)
|
||||
void P_SpawnSpecials(INT32 fromnetsave, boolean reloadinggamestate)
|
||||
{
|
||||
sector_t *sector;
|
||||
size_t i;
|
||||
|
@ -6738,7 +6738,8 @@ void P_SpawnSpecials(INT32 fromnetsave)
|
|||
}
|
||||
}
|
||||
|
||||
P_RunLevelLoadExecutors();
|
||||
if (!reloadinggamestate)
|
||||
P_RunLevelLoadExecutors();
|
||||
}
|
||||
|
||||
/** Adds 3Dfloors as appropriate based on a common control linedef.
|
||||
|
|
Loading…
Reference in a new issue