aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/Scene.cs
diff options
context:
space:
mode:
authorMW2007-11-27 15:44:39 +0000
committerMW2007-11-27 15:44:39 +0000
commitb916d5b112990bac8b412fa8ddb83be87b25e02c (patch)
treedb6ee74ff39da7e32ac73d1a4abdb4d1fdbb4221 /OpenSim/Region/Environment/Scenes/Scene.cs
parentRemove unused function, one less warning (diff)
downloadopensim-SC_OLD-b916d5b112990bac8b412fa8ddb83be87b25e02c.zip
opensim-SC_OLD-b916d5b112990bac8b412fa8ddb83be87b25e02c.tar.gz
opensim-SC_OLD-b916d5b112990bac8b412fa8ddb83be87b25e02c.tar.bz2
opensim-SC_OLD-b916d5b112990bac8b412fa8ddb83be87b25e02c.tar.xz
Fixed bug, where the clients in a region weren't told to kill a user's avatar when that user teleported to a different region.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Scene.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs
index d8723f6..bdafce8 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.cs
@@ -1115,6 +1115,9 @@ namespace OpenSim.Region.Environment.Scenes
1115 m_sceneGridService.OnAvatarCrossingIntoRegion += AgentCrossing; 1115 m_sceneGridService.OnAvatarCrossingIntoRegion += AgentCrossing;
1116 m_sceneGridService.OnCloseAgentConnection += CloseConnection; 1116 m_sceneGridService.OnCloseAgentConnection += CloseConnection;
1117 m_sceneGridService.OnRegionUp += OtherRegionUp; 1117 m_sceneGridService.OnRegionUp += OtherRegionUp;
1118
1119 m_sceneGridService.KillObject = SendKillObject;
1120
1118 // Tell Other regions that I'm here. 1121 // Tell Other regions that I'm here.
1119 1122
1120 } 1123 }