diff --git a/src/p_tick.cpp b/src/p_tick.cpp index 1837fb3da2..b952aa23a0 100644 --- a/src/p_tick.cpp +++ b/src/p_tick.cpp @@ -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]);