mirror of
https://github.com/UberGames/rpgxEF.git
synced 2024-11-10 07:11:34 +00:00
minor fixes
This commit is contained in:
parent
7bd0864a2d
commit
c4f33a82e0
1 changed files with 6 additions and 6 deletions
|
@ -109,12 +109,12 @@ void CG_ParseServerinfo( void ) {
|
|||
char *mapname;
|
||||
|
||||
info = CG_ConfigString( CS_SERVERINFO );
|
||||
cgs.gametype = atoi( Info_ValueForKey( info, "g_gametype" ) );
|
||||
cgs.pModAssimilation = atoi( Info_ValueForKey( info, "g_pModAssimilation" ) );
|
||||
cgs.pModDisintegration = atoi( Info_ValueForKey( info, "g_pModDisintegration" ) );
|
||||
cgs.pModActionHero = atoi( Info_ValueForKey( info, "g_pModActionHero" ) );
|
||||
cgs.pModSpecialties = atoi( Info_ValueForKey( info, "g_pModSpecialties" ) );
|
||||
cgs.pModElimination = atoi( Info_ValueForKey( info, "g_pModElimination" ) );
|
||||
cgs.gametype = (gametype_t)atoi( Info_ValueForKey( info, "g_gametype" ) );
|
||||
cgs.pModAssimilation = (qboolean)atoi( Info_ValueForKey( info, "g_pModAssimilation" ) );
|
||||
cgs.pModDisintegration = (qboolean)atoi( Info_ValueForKey( info, "g_pModDisintegration" ) );
|
||||
cgs.pModActionHero = (qboolean)atoi( Info_ValueForKey( info, "g_pModActionHero" ) );
|
||||
cgs.pModSpecialties = (qboolean)atoi( Info_ValueForKey( info, "g_pModSpecialties" ) );
|
||||
cgs.pModElimination = (qboolean)atoi( Info_ValueForKey( info, "g_pModElimination" ) );
|
||||
cgs.dmflags = atoi( Info_ValueForKey( info, "dmflags" ) );
|
||||
cgs.teamflags = atoi( Info_ValueForKey( info, "teamflags" ) );
|
||||
cgs.fraglimit = atoi( Info_ValueForKey( info, "fraglimit" ) );
|
||||
|
|
Loading…
Reference in a new issue