Do not read game.cfg under Xash3D.

This commit is contained in:
Night Owl 2018-09-22 13:33:24 +05:00
parent b4113ac7cd
commit f8908e7d31
1 changed files with 7 additions and 2 deletions

View File

@ -28,6 +28,8 @@
extern edict_t *EntSelectSpawnPoint( CBaseEntity *pPlayer );
extern BOOL gPhysicsInterfaceInitialized;
//++ BulliT
DLL_GLOBAL AgGameRules *g_pGameRules = NULL;
//-- Martin Webrant
@ -313,8 +315,11 @@ void CGameRules::RefreshSkillData ( void )
AgGameRules *InstallGameRules( void )
//-- Martin Webrant
{
SERVER_COMMAND( "exec game.cfg\n" );
SERVER_EXECUTE();
if( !gPhysicsInterfaceInitialized )
{
SERVER_COMMAND( "exec game.cfg\n" );
SERVER_EXECUTE();
}
//++ BulliT
char *servercfgfile = (char *)CVAR_GET_STRING( "servercfgfile" );