diff options
Diffstat (limited to 'OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs')
-rw-r--r-- | OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs b/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs index 775bded..752d552 100644 --- a/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs +++ b/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs | |||
@@ -251,9 +251,7 @@ namespace OpenSim.Services.Connectors.Simulation | |||
251 | return true; | 251 | return true; |
252 | } | 252 | } |
253 | 253 | ||
254 | /// <summary> | 254 | private bool CloseAgent(GridRegion destination, UUID id, bool ChildOnly) |
255 | /// </summary> | ||
256 | public bool CloseAgent(GridRegion destination, UUID id) | ||
257 | { | 255 | { |
258 | // m_log.DebugFormat("[REMOTE SIMULATION CONNECTOR]: CloseAgent start"); | 256 | // m_log.DebugFormat("[REMOTE SIMULATION CONNECTOR]: CloseAgent start"); |
259 | 257 | ||
@@ -271,6 +269,16 @@ namespace OpenSim.Services.Connectors.Simulation | |||
271 | return true; | 269 | return true; |
272 | } | 270 | } |
273 | 271 | ||
272 | public bool CloseChildAgent(GridRegion destination, UUID id) | ||
273 | { | ||
274 | return CloseAgent(destination, id, true); | ||
275 | } | ||
276 | |||
277 | public bool CloseAgent(GridRegion destination, UUID id) | ||
278 | { | ||
279 | return CloseAgent(destination, id, false); | ||
280 | } | ||
281 | |||
274 | #endregion Agents | 282 | #endregion Agents |
275 | 283 | ||
276 | #region Objects | 284 | #region Objects |