diff options
author | maximius <none@none> | 2009-08-15 13:39:40 -0700 |
---|---|---|
committer | maximius <none@none> | 2009-08-15 13:39:40 -0700 |
commit | b6e7065d41b712f73177096ebb3bb9b36bf4bd7f (patch) | |
tree | 59a30cc0c195295518f62c8a3de90242bbc44b5d /src/game/World.cpp | |
parent | 3269f47b5bdd98e9a8195a2dde8d785be38d81ce (diff) |
*Add config option to change minimum level required to Dual Spec
--HG--
branch : trunk
Diffstat (limited to 'src/game/World.cpp')
-rw-r--r-- | src/game/World.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/game/World.cpp b/src/game/World.cpp index e09aab24e44..a5e6a66f491 100644 --- a/src/game/World.cpp +++ b/src/game/World.cpp @@ -729,6 +729,8 @@ void World::LoadConfigSettings(bool reload) m_configs[CONFIG_MAX_PLAYER_LEVEL] = MAX_LEVEL; } + m_configs[CONFIG_MIN_DUALSPEC_LEVEL] = sConfig.GetIntDefault("MinDualSpecLevel", 40); + m_configs[CONFIG_START_PLAYER_LEVEL] = sConfig.GetIntDefault("StartPlayerLevel", 1); if(m_configs[CONFIG_START_PLAYER_LEVEL] < 1) { |