Skip to content

Commit 1bca8ba

Browse files
committed
Fixed empty <auth_serial_groups> not working right
1 parent bdaf4da commit 1bca8ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: Server/mods/deathmatch/logic/CMainConfig.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ bool CMainConfig::Load ( void )
503503

504504
// auth_serial_groups
505505
SString strGroupList;
506-
if ( GetString( m_pRootNode, "auth_serial_groups", strGroupList, 1 ) != IS_SUCCESS )
506+
if ( GetString( m_pRootNode, "auth_serial_groups", strGroupList ) != IS_SUCCESS )
507507
{
508508
// If not defined in conf file, then default to Admin
509509
strGroupList = "Admin";

0 commit comments

Comments
 (0)