Move particle thinking back to server

These need to be ran before anything has spawned them but after the game's pause state has been confirmed
This commit is contained in:
Boondorl 2025-03-12 11:35:45 -04:00 committed by Ricardo Luís Vaz Silva
parent 69b0932f23
commit a7a9cbe30a

View file

@ -77,8 +77,6 @@ void P_RunClientsideLogic()
ac->ClearFOVInterpolation();
}
P_ThinkParticles(level); // [RH] make the particles think
level->ClientsideThinkers.RunClientsideThinkers(level);
}
@ -246,6 +244,8 @@ void P_Ticker (void)
ac->ClearFOVInterpolation();
}
P_ThinkParticles(Level); // [RH] make the particles think
for (i = 0; i < MAXPLAYERS; i++)
if (Level->PlayerInGame(i))
P_PlayerThink(Level->Players[i]);