diff --git a/src/engine/client/client.cpp b/src/engine/client/client.cpp index dcc92baf3..f6973cab4 100644 --- a/src/engine/client/client.cpp +++ b/src/engine/client/client.cpp @@ -2679,6 +2679,8 @@ void CClient::Run() while (1) { + set_new_tick(); + // VersionUpdate(); diff --git a/src/game/client/components/particles.cpp b/src/game/client/components/particles.cpp index 66a62f1cd..3d5611941 100644 --- a/src/game/client/components/particles.cpp +++ b/src/game/client/components/particles.cpp @@ -137,6 +137,7 @@ void CParticles::OnRender() if(Client()->State() < IClient::STATE_ONLINE) return; + set_new_tick(); static int64 LastTime = 0; int64 t = time_get();