fixed windows builds 2

This commit is contained in:
2025-07-20 13:33:42 +03:00
parent fb4c201921
commit 69d149515a
6 changed files with 22 additions and 13 deletions

View File

@@ -54,7 +54,8 @@ void IServer::Think( float fDelta )
/* tickrate */
while(g_fAccumulator>=fTickrate)
{
IInput::Frame();
if (INetworking::IsClient())
IInput::Frame();
Console()->Execute();
g_fAccumulator-=fTickrate;
for (auto &entity: EntityManager()->m_entities)