diff --git a/source/WorldServer/Rules/Rules.cpp b/source/WorldServer/Rules/Rules.cpp index 3e7298c..c91a0ce 100644 --- a/source/WorldServer/Rules/Rules.cpp +++ b/source/WorldServer/Rules/Rules.cpp @@ -247,6 +247,8 @@ void RuleManager::Init() ** Setting to less than 10 or greater than 50 will disable completely ** Range supported is 10 - 50%. **/ + RULE_INIT(R_Player, ForceCommonerFarJourney, "1"); + /* PVP */ RULE_INIT(R_PVP, AllowPVP, "0"); RULE_INIT(R_PVP, LevelRange, "4"); diff --git a/source/WorldServer/Rules/Rules.h b/source/WorldServer/Rules/Rules.h index bc1a1f9..de6e937 100644 --- a/source/WorldServer/Rules/Rules.h +++ b/source/WorldServer/Rules/Rules.h @@ -98,6 +98,7 @@ enum RuleType { StartHPLevelMod, StartPowerLevelMod, AllowPlayerEquipCombat, + ForceCommonerFarJourney, MaxTargetCommandDistance, MinSkillMultiplierValue, HarvestSkillUpMultiplier,