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 cc6bffb..46ad9dd 100644 --- a/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs +++ b/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs | |||
@@ -313,9 +313,7 @@ namespace OpenSim.Services.Connectors.Simulation | |||
313 | return true; | 313 | return true; |
314 | } | 314 | } |
315 | 315 | ||
316 | /// <summary> | 316 | private bool CloseAgent(GridRegion destination, UUID id, bool ChildOnly) |
317 | /// </summary> | ||
318 | public bool CloseAgent(GridRegion destination, UUID id) | ||
319 | { | 317 | { |
320 | // m_log.DebugFormat("[REMOTE SIMULATION CONNECTOR]: CloseAgent start"); | 318 | // m_log.DebugFormat("[REMOTE SIMULATION CONNECTOR]: CloseAgent start"); |
321 | 319 | ||
@@ -333,6 +331,16 @@ namespace OpenSim.Services.Connectors.Simulation | |||
333 | return true; | 331 | return true; |
334 | } | 332 | } |
335 | 333 | ||
334 | public bool CloseChildAgent(GridRegion destination, UUID id) | ||
335 | { | ||
336 | return CloseAgent(destination, id, true); | ||
337 | } | ||
338 | |||
339 | public bool CloseAgent(GridRegion destination, UUID id) | ||
340 | { | ||
341 | return CloseAgent(destination, id, false); | ||
342 | } | ||
343 | |||
336 | #endregion Agents | 344 | #endregion Agents |
337 | 345 | ||
338 | #region Objects | 346 | #region Objects |