aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs3
-rw-r--r--bin/OpenSimDefaults.ini3
2 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs b/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs
index 4219254..9302784 100644
--- a/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs
+++ b/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs
@@ -518,6 +518,9 @@ namespace OpenSim.Region.CoreModules.Framework.EntityTransfer
518 /// </returns> 518 /// </returns>
519 private bool IsWithinMaxTeleportDistance(RegionInfo sourceRegion, GridRegion destRegion) 519 private bool IsWithinMaxTeleportDistance(RegionInfo sourceRegion, GridRegion destRegion)
520 { 520 {
521 if(MaxTransferDistance == 0)
522 return true;
523
521// m_log.DebugFormat("[ENTITY TRANSFER MODULE]: Source co-ords are x={0} y={1}", curRegionX, curRegionY); 524// m_log.DebugFormat("[ENTITY TRANSFER MODULE]: Source co-ords are x={0} y={1}", curRegionX, curRegionY);
522// 525//
523// m_log.DebugFormat("[ENTITY TRANSFER MODULE]: Final dest is x={0} y={1} {2}@{3}", 526// m_log.DebugFormat("[ENTITY TRANSFER MODULE]: Final dest is x={0} y={1} {2}@{3}",
diff --git a/bin/OpenSimDefaults.ini b/bin/OpenSimDefaults.ini
index 0a85085..17f7490 100644
--- a/bin/OpenSimDefaults.ini
+++ b/bin/OpenSimDefaults.ini
@@ -653,7 +653,8 @@
653 653
654[EntityTransfer] 654[EntityTransfer]
655 ; The maximum distance in regions that an agent is allowed to teleport along the x or y axis 655 ; The maximum distance in regions that an agent is allowed to teleport along the x or y axis
656 ; This is set to 4095 because current viewers can't handle teleports that are greater than this distance 656 ; This is set to 4095 by default because viewers released before September 2013 can't handle teleports that are greater than this distance
657 ; Setting to 0 will allow teleports of any distance
657 max_distance = 4095 658 max_distance = 4095
658 659
659 ; Minimum user level required for HyperGrid teleports 660 ; Minimum user level required for HyperGrid teleports