diff options
-rw-r--r-- | src/server/worldserver/worldserver.conf.dist | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/server/worldserver/worldserver.conf.dist b/src/server/worldserver/worldserver.conf.dist index 8c53993d3f0..d3b0e289711 100644 --- a/src/server/worldserver/worldserver.conf.dist +++ b/src/server/worldserver/worldserver.conf.dist @@ -156,8 +156,8 @@ EAIErrorLevel = 2 # vmap.enableLOS # vmap.enableHeight # Enable/Disable VMmap support for line of sight and height calculation -# Default: 0 (disable) -# 1 (enable) +# 0 (disable) +# Default: 1 (enable) # # vmap.ignoreMapIds # Map id that will be ignored by VMaps @@ -172,11 +172,12 @@ EAIErrorLevel = 2 # # vmap.petLOS # Check LOS for pets, to avoid them going through walls etc. -# Default: 0 (disable, less CPU usage) -# 1 (enable, each pet attack command will check for LOS) +# 0 (disable, somewhat less CPU usage) +# Default: 1 (enable, each pet attack command will check for LOS) # # vmap.enableIndoorCheck # Enable/Disable VMap based indoor check to remove outdoor-only auras (mounts etc.) +# 0 (disabled, somewhat less CPU usage) # Default: 1 (enabled) # # DetectPosCollision @@ -242,11 +243,11 @@ ChangeWeatherInterval = 600000 PlayerSaveInterval = 900000 PlayerSave.Stats.MinLevel = 0 PlayerSave.Stats.SaveOnlyOnLogout = 1 -vmap.enableLOS = 0 -vmap.enableHeight = 0 +vmap.enableLOS = 1 +vmap.enableHeight = 1 vmap.ignoreMapIds = "" vmap.ignoreSpellIds = "7720" -vmap.petLOS = 0 +vmap.petLOS = 1 vmap.enableIndoorCheck = 1 DetectPosCollision = 1 TargetPosRecalculateRange = 1.5 |