mirror of
https://github.com/ornfelt/azerothcore_lua_scripts
synced 2026-08-22 06:26:03 -04:00
30 lines
1.1 KiB
Diff
30 lines
1.1 KiB
Diff
From f71ceb7bc3167e0aab927dc37e3b403a50b63d77 Mon Sep 17 00:00:00 2001
|
|
From: LordPsyan <realmsofwarcraft@gmail.com>
|
|
Date: Sat, 1 Sep 2012 13:27:35 -0500
|
|
Subject: [PATCH 2/2] 2012_09_01-XP-After-Level-100
|
|
|
|
---
|
|
src/server/game/World/World.cpp | 4 ++--
|
|
1 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/src/server/game/World/World.cpp b/src/server/game/World/World.cpp
|
|
index ea74b6d..4197260 100755
|
|
--- a/src/server/game/World/World.cpp
|
|
+++ b/src/server/game/World/World.cpp
|
|
@@ -733,11 +733,11 @@ void World::LoadConfigSettings(bool reload)
|
|
else
|
|
m_int_configs[CONFIG_MAX_PLAYER_LEVEL] = ConfigMgr::GetIntDefault("MaxPlayerLevel", DEFAULT_MAX_LEVEL);
|
|
|
|
- if (m_int_configs[CONFIG_MAX_PLAYER_LEVEL] > MAX_LEVEL)
|
|
+ /*if (m_int_configs[CONFIG_MAX_PLAYER_LEVEL] > MAX_LEVEL)
|
|
{
|
|
sLog->outError(LOG_FILTER_SERVER_LOADING, "MaxPlayerLevel (%i) must be in range 1..%u. Set to %u.", m_int_configs[CONFIG_MAX_PLAYER_LEVEL], MAX_LEVEL, MAX_LEVEL);
|
|
m_int_configs[CONFIG_MAX_PLAYER_LEVEL] = MAX_LEVEL;
|
|
- }
|
|
+ }*/
|
|
|
|
m_int_configs[CONFIG_MIN_DUALSPEC_LEVEL] = ConfigMgr::GetIntDefault("MinDualSpecLevel", 40);
|
|
|
|
--
|
|
1.7.2.5
|
|
|