diff options
Diffstat (limited to 'OpenSim/Region/Environment')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Scene.cs | 5 | ||||
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SceneBase.cs | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs index 1145b00..bfdf517 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.cs | |||
@@ -1243,7 +1243,12 @@ namespace OpenSim.Region.Environment.Scenes | |||
1243 | // Remove client agent from profile, so new logins will work | 1243 | // Remove client agent from profile, so new logins will work |
1244 | CommsManager.UserService.clearUserAgent(agentID); | 1244 | CommsManager.UserService.clearUserAgent(agentID); |
1245 | } | 1245 | } |
1246 | public override void CloseAllAgents(uint circuitcode) | ||
1247 | { | ||
1248 | // Called by ClientView to kill all circuit codes | ||
1249 | ClientManager.CloseAllAgents(circuitcode); | ||
1246 | 1250 | ||
1251 | } | ||
1247 | public void NotifyMyCoarseLocationChange() | 1252 | public void NotifyMyCoarseLocationChange() |
1248 | { | 1253 | { |
1249 | ForEachScenePresence(delegate(ScenePresence presence) { presence.CoarseLocationChange(); }); | 1254 | ForEachScenePresence(delegate(ScenePresence presence) { presence.CoarseLocationChange(); }); |
diff --git a/OpenSim/Region/Environment/Scenes/SceneBase.cs b/OpenSim/Region/Environment/Scenes/SceneBase.cs index 75118e2..35d88eb 100644 --- a/OpenSim/Region/Environment/Scenes/SceneBase.cs +++ b/OpenSim/Region/Environment/Scenes/SceneBase.cs | |||
@@ -130,6 +130,8 @@ namespace OpenSim.Region.Environment.Scenes | |||
130 | /// <param name="agentID"></param> | 130 | /// <param name="agentID"></param> |
131 | public abstract void RemoveClient(LLUUID agentID); | 131 | public abstract void RemoveClient(LLUUID agentID); |
132 | 132 | ||
133 | public abstract void CloseAllAgents(uint circuitcode); | ||
134 | |||
133 | #endregion | 135 | #endregion |
134 | 136 | ||
135 | /// <summary> | 137 | /// <summary> |