aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormegamage <none@none>2009-04-11 15:35:50 -0500
committermegamage <none@none>2009-04-11 15:35:50 -0500
commit8451619c2fe154997e8f989a90bba20aaabeaf86 (patch)
tree42ddbc0eb02fa8b048fe9bd647ebab2c823335c1 /src
parent22529d80a477523d5925e1876948b316daf1ef88 (diff)
[7647] Fixed typo in option StartHonorPoints default value set at error. Author: zhanhang03
--HG-- branch : trunk
Diffstat (limited to 'src')
-rw-r--r--src/game/World.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/World.cpp b/src/game/World.cpp
index f496dd6ae36..ef1935f84a7 100644
--- a/src/game/World.cpp
+++ b/src/game/World.cpp
@@ -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])
{