Skip to content

Commit

Permalink
Changed server private IP error to a warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
ccw808 committed Mar 19, 2016
1 parent adb4a9b commit 52a9ec2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions MTA10_Server/mods/deathmatch/logic/CGame.cpp
Expand Up @@ -630,8 +630,7 @@ bool CGame::Start ( int iArgumentCount, char* szArguments [] )
uchar b = ( (uchar*)&serverIp.s_addr )[1];
if ( a == 10 || a == 127 || ( a == 169 && b == 254 ) || ( a == 192 && b == 168 ) )
{
CLogger::ErrorPrintf ( "Can not specify private IP '%s' with ase enabled! Use: <serverip>auto</serverip>\n", *strServerIP );
return false;
CLogger::LogPrintf ( "WARNING: Private IP '%s' with ase enabled! Use: <serverip>auto</serverip>\n", *strServerIP );
}
}

Expand Down

0 comments on commit 52a9ec2

Please sign in to comment.