diff options
author | tobmaps <spambot42@yandex.ru> | 2011-06-09 02:10:46 +0700 |
---|---|---|
committer | tobmaps <spambot42@yandex.ru> | 2011-06-09 02:10:46 +0700 |
commit | a017474ab859c2d3164c326e4865ef8fdb483435 (patch) | |
tree | 0a6a84ee5f562ef9cab2795ea4ef6689f20c60bf | |
parent | 9505607d957ad4c74528ab1b37aa9a47bac6a518 (diff) |
Core/RecruitAFriend: Fix max level difference for benefit experience multiplier
-rwxr-xr-x | src/server/game/World/World.cpp | 2 | ||||
-rw-r--r-- | src/server/worldserver/worldserver.conf.dist | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/server/game/World/World.cpp b/src/server/game/World/World.cpp index a17e0b0dad3..b5fce974d91 100755 --- a/src/server/game/World/World.cpp +++ b/src/server/game/World/World.cpp @@ -828,7 +828,7 @@ void World::LoadConfigSettings(bool reload) m_int_configs[CONFIG_MAX_RECRUIT_A_FRIEND_BONUS_PLAYER_LEVEL] = 60; } - m_int_configs[CONFIG_MAX_RECRUIT_A_FRIEND_BONUS_PLAYER_LEVEL_DIFFERENCE] = sConfig->GetIntDefault("RecruitAFriend.MaxDifference", 3); + m_int_configs[CONFIG_MAX_RECRUIT_A_FRIEND_BONUS_PLAYER_LEVEL_DIFFERENCE] = sConfig->GetIntDefault("RecruitAFriend.MaxDifference", 4); m_bool_configs[CONFIG_ALL_TAXI_PATHS] = sConfig->GetBoolDefault("AllFlightPaths", false); m_bool_configs[CONFIG_INSTANT_TAXI] = sConfig->GetBoolDefault("InstantFlightPaths", false); diff --git a/src/server/worldserver/worldserver.conf.dist b/src/server/worldserver/worldserver.conf.dist index db6e9dc74c9..66ca7645e49 100644 --- a/src/server/worldserver/worldserver.conf.dist +++ b/src/server/worldserver/worldserver.conf.dist @@ -1108,9 +1108,9 @@ RecruitAFriend.MaxLevel = 60 # RecruitAFriend.MaxDifference # Description: Highest level difference between linked Recruiter and Friend benefit from # the Recruit-A-Friend experience multiplier. -# Default: 3 +# Default: 4 -RecruitAFriend.MaxDifference = 3 +RecruitAFriend.MaxDifference = 4 # # InstantLogout |