networking fixes

This commit is contained in:
2026-03-08 18:57:00 +02:00
parent 1a2a353e03
commit 321a2f31a9
13 changed files with 130 additions and 19 deletions

View File

@@ -113,7 +113,7 @@ IEntityFactory *CEntitySystem::GetFactoryByClassname( const char *szName )
return NULL;
}
void CEntitySystem::Think()
void CEntitySystem::Think( float fDelta )
{
CBaseEntity *pEntity;
int i;
@@ -128,7 +128,7 @@ void CEntitySystem::Think()
if ( !pEntity->m_pfnThink )
continue;
(pEntity->*pEntity->m_pfnThink)(0);
(pEntity->*pEntity->m_pfnThink)(fDelta);
}
}