do not run P_RunLevelLoadExecutors on gamestate reload

Prevents spam and most likely some issues on certain maps
This commit is contained in:
Alug 2024-09-17 16:24:16 +02:00
parent a1874036f1
commit aa8e8e740e
2 changed files with 4 additions and 3 deletions

View file

@ -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();

View file

@ -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.