Skip to content

Commit

Permalink
Fixed empty <auth_serial_groups> not working right
Browse files Browse the repository at this point in the history
  • Loading branch information
ccw808 committed Oct 5, 2017
1 parent bdaf4da commit 1bca8ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Server/mods/deathmatch/logic/CMainConfig.cpp
Expand Up @@ -503,7 +503,7 @@ bool CMainConfig::Load ( void )

// auth_serial_groups
SString strGroupList;
if ( GetString( m_pRootNode, "auth_serial_groups", strGroupList, 1 ) != IS_SUCCESS )
if ( GetString( m_pRootNode, "auth_serial_groups", strGroupList ) != IS_SUCCESS )
{
// If not defined in conf file, then default to Admin
strGroupList = "Admin";
Expand Down

0 comments on commit 1bca8ba

Please sign in to comment.