Route logins according to Estate, Telehub and TeleportFlags
parent
86e8a56fe1
commit
49c65279fa
|
@ -3431,8 +3431,10 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Honor Estate teleport routing via Telehubs
|
// Honor Estate teleport routing via Telehubs excluding ViaHome and GodLike TeleportFlags
|
||||||
if (RegionInfo.RegionSettings.TelehubObject != UUID.Zero && RegionInfo.EstateSettings.AllowDirectTeleport == false && !viahome && !godlike)
|
if (RegionInfo.RegionSettings.TelehubObject != UUID.Zero &&
|
||||||
|
RegionInfo.EstateSettings.AllowDirectTeleport == false &&
|
||||||
|
!viahome && !godlike)
|
||||||
{
|
{
|
||||||
SceneObjectGroup telehub = GetSceneObjectGroup(RegionInfo.RegionSettings.TelehubObject);
|
SceneObjectGroup telehub = GetSceneObjectGroup(RegionInfo.RegionSettings.TelehubObject);
|
||||||
// Can have multiple SpawnPoints
|
// Can have multiple SpawnPoints
|
||||||
|
|
Loading…
Reference in New Issue