mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-04-04 17:08:44 +00:00
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:
parent
69b0932f23
commit
a7a9cbe30a
1 changed files with 2 additions and 2 deletions
|
@ -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]);
|
||||
|
|
Loading…
Reference in a new issue