Core/PathFinding: Enable pathfinding (MMaps) by default

Port From (https://github.com/TrinityCore/TrinityCore/commit/2942d066642fa9e1cf31fc249a69ecbeec0c5593)
This commit is contained in:
hondacrx
2022-04-28 10:41:39 -04:00
parent a167709cdf
commit 0ea2cded93
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -860,7 +860,7 @@ namespace Game
Values[WorldCfg.RespawnDynamicMinimumGameObject] = GetDefaultValue("Respawn.DynamicMinimumGameObject", 10);
Values[WorldCfg.RespawnGuidWarningFrequency] = GetDefaultValue("Respawn.WarningFrequency", 1800);
Values[WorldCfg.EnableMmaps] = GetDefaultValue("mmap.EnablePathFinding", false);
Values[WorldCfg.EnableMmaps] = GetDefaultValue("mmap.EnablePathFinding", true);
Values[WorldCfg.VmapIndoorCheck] = GetDefaultValue("vmap.EnableIndoorCheck", false);
Values[WorldCfg.MaxWho] = GetDefaultValue("MaxWhoListReturns", 49);
+2 -2
View File
@@ -378,8 +378,8 @@ DisconnectToleranceInterval = 0
#
# mmap.enablePathFinding
# Description: Enable/Disable pathfinding using mmaps - recommended.
# Default: 0 - (Disabled)
# 1 - (Enabled)
# Default: 1 - (Enabled)
# 0 - (Disabled)
mmap.EnablePathFinding = 1