aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Scene.cs
diff options
context:
space:
mode:
authorMelanie2013-05-07 00:31:11 +0100
committerMelanie2013-05-07 00:31:11 +0100
commit4c83b5e719ad288b1250fbed3f74698fa34eff21 (patch)
tree31eb880c4cf00b0697b07fd7f392ad374a11d1db /OpenSim/Region/Framework/Scenes/Scene.cs
parentBulletSim: apply linear and angular friction in vehicle coordinates (diff)
downloadopensim-SC_OLD-4c83b5e719ad288b1250fbed3f74698fa34eff21.zip
opensim-SC_OLD-4c83b5e719ad288b1250fbed3f74698fa34eff21.tar.gz
opensim-SC_OLD-4c83b5e719ad288b1250fbed3f74698fa34eff21.tar.bz2
opensim-SC_OLD-4c83b5e719ad288b1250fbed3f74698fa34eff21.tar.xz
Step one of estate settings sharing - port the Avination Estate module (complete module) as changes are too extensive to apply manually
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index 8fe2d72..2aba2dd 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -3230,17 +3230,18 @@ namespace OpenSim.Region.Framework.Scenes
3230 /// </summary> 3230 /// </summary>
3231 /// <param name="agentId">The avatar's Unique ID</param> 3231 /// <param name="agentId">The avatar's Unique ID</param>
3232 /// <param name="client">The IClientAPI for the client</param> 3232 /// <param name="client">The IClientAPI for the client</param>
3233 public virtual void TeleportClientHome(UUID agentId, IClientAPI client) 3233 public virtual bool TeleportClientHome(UUID agentId, IClientAPI client)
3234 { 3234 {
3235 if (EntityTransferModule != null) 3235 if (EntityTransferModule != null)
3236 { 3236 {
3237 EntityTransferModule.TeleportHome(agentId, client); 3237 return EntityTransferModule.TeleportHome(agentId, client);
3238 } 3238 }
3239 else 3239 else
3240 { 3240 {
3241 m_log.DebugFormat("[SCENE]: Unable to teleport user home: no AgentTransferModule is active"); 3241 m_log.DebugFormat("[SCENE]: Unable to teleport user home: no AgentTransferModule is active");
3242 client.SendTeleportFailed("Unable to perform teleports on this simulator."); 3242 client.SendTeleportFailed("Unable to perform teleports on this simulator.");
3243 } 3243 }
3244 return false;
3244 } 3245 }
3245 3246
3246 /// <summary> 3247 /// <summary>