diff --git a/code/server/sv_init.c b/code/server/sv_init.c index ad8dfe60..3c96d2d4 100644 --- a/code/server/sv_init.c +++ b/code/server/sv_init.c @@ -166,7 +166,7 @@ int SV_FindIndex( const char *name, int start, int max, qboolean create ) { if( !s || !s[ 0 ] ) { break; } - if( !strcmp( s, name ) ) { + if( !Q_stricmp( s, name ) ) { return i; } }