aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-08-10 00:59:31 +0100
committerJustin Clark-Casey (justincc)2011-08-10 00:59:31 +0100
commit4cb8d6379ddb39cfb8b30a63475e154a00a78110 (patch)
tree3305b50ea63ba6eaa6750fd4015697da226f5dbc /OpenSim/Framework
parentimplement osNpcStopMoveTo() to cancel any current move target (diff)
downloadopensim-SC_OLD-4cb8d6379ddb39cfb8b30a63475e154a00a78110.zip
opensim-SC_OLD-4cb8d6379ddb39cfb8b30a63475e154a00a78110.tar.gz
opensim-SC_OLD-4cb8d6379ddb39cfb8b30a63475e154a00a78110.tar.bz2
opensim-SC_OLD-4cb8d6379ddb39cfb8b30a63475e154a00a78110.tar.xz
Stop trying to deregister caps or close child agents when an NPC is removed
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/IScene.cs13
1 files changed, 12 insertions, 1 deletions
diff --git a/OpenSim/Framework/IScene.cs b/OpenSim/Framework/IScene.cs
index 1298f26..b5f975b 100644
--- a/OpenSim/Framework/IScene.cs
+++ b/OpenSim/Framework/IScene.cs
@@ -70,8 +70,19 @@ namespace OpenSim.Framework
70 70
71 event restart OnRestart; 71 event restart OnRestart;
72 72
73 /// <summary>
74 /// Register the new client with the scene. The client starts off as a child agent - the later agent crossing
75 /// will promote it to a root agent during login.
76 /// </summary>
77 /// <param name="client"></param
73 void AddNewClient(IClientAPI client); 78 void AddNewClient(IClientAPI client);
74 void RemoveClient(UUID agentID); 79
80 /// <summary>
81 /// Remove the given client from the scene.
82 /// </summary>
83 /// <param name="agentID"></param>
84 /// <param name="closeChildAgents">Close the neighbour child agents associated with this client.</param>
85 void RemoveClient(UUID agentID, bool closeChildAgents);
75 86
76 void Restart(); 87 void Restart();
77 //RegionInfo OtherRegionUp(RegionInfo thisRegion); 88 //RegionInfo OtherRegionUp(RegionInfo thisRegion);