Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
commit
fc5d274229
|
@ -577,6 +577,12 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
{
|
||||
get { return m_SpawnPointRouting; }
|
||||
}
|
||||
// allow landmarks to pass
|
||||
private bool m_TelehubAllowLandmarks;
|
||||
public bool TelehubAllowLandmarks
|
||||
{
|
||||
get { return m_TelehubAllowLandmarks; }
|
||||
}
|
||||
|
||||
#endregion Properties
|
||||
|
||||
|
@ -733,6 +739,7 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
m_defaultScriptEngine = startupConfig.GetString("DefaultScriptEngine", "XEngine");
|
||||
|
||||
m_SpawnPointRouting = startupConfig.GetString("SpawnPointRouting", "closest");
|
||||
m_TelehubAllowLandmarks = startupConfig.GetBoolean("TelehubAllowLandmark", false);
|
||||
|
||||
IConfig packetConfig = m_config.Configs["PacketPool"];
|
||||
if (packetConfig != null)
|
||||
|
|
|
@ -3929,7 +3929,8 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
{
|
||||
if ((m_teleportFlags & (TeleportFlags.ViaLogin | TeleportFlags.ViaRegionID)) ==
|
||||
(TeleportFlags.ViaLogin | TeleportFlags.ViaRegionID) ||
|
||||
(m_teleportFlags & TeleportFlags.ViaLandmark) != 0 ||
|
||||
// (m_teleportFlags & TeleportFlags.ViaLandmark) != 0 ||
|
||||
(m_scene.TelehubAllowLandmarks == true ? false : ((m_teleportFlags & TeleportFlags.ViaLandmark) != 0 )) ||
|
||||
(m_teleportFlags & TeleportFlags.ViaLocation) != 0 ||
|
||||
(m_teleportFlags & Constants.TeleportFlags.ViaHGLogin) != 0)
|
||||
{
|
||||
|
|
|
@ -249,6 +249,11 @@
|
|||
;; "sequence" will place the avatar on the next sequential SpawnPoint
|
||||
; SpawnPointRouting = closest
|
||||
|
||||
;# {TelehubAllowLandmark} {} {Allow users with landmarks to override telehub routing} {true false} false
|
||||
;; TelehubAllowLandmark allows users with landmarks to override telehub routing and land at the landmark coordinates when set to true
|
||||
;; default is false
|
||||
; TelehubAllowLandmark = false
|
||||
|
||||
[Estates]
|
||||
; If these values are commented out then the user will be asked for estate details when required (this is the normal case).
|
||||
; If these values are uncommented then they will be used to create a default estate as necessary.
|
||||
|
|
Loading…
Reference in New Issue