[7647] Fixed typo in option StartHonorPoints default value set at error. Author: zhanhang03

--HG--
branch : trunk
This commit is contained in:
megamage
2009-04-11 15:35:50 -05:00
parent 22529d80a4
commit 8451619c2f

View File

@@ -737,7 +737,7 @@ void World::LoadConfigSettings(bool reload)
{
sLog.outError("StartHonorPoints (%i) must be in range 0..MaxHonorPoints(%u). Set to %u.",
m_configs[CONFIG_START_HONOR_POINTS],m_configs[CONFIG_MAX_HONOR_POINTS],0);
m_configs[CONFIG_MAX_HONOR_POINTS] = 0;
m_configs[CONFIG_START_HONOR_POINTS] = 0;
}
else if(m_configs[CONFIG_START_HONOR_POINTS] > m_configs[CONFIG_MAX_HONOR_POINTS])
{