diff options
author | Justin Clark-Casey (justincc) | 2013-09-27 22:27:39 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-09-27 22:29:16 +0100 |
commit | 5a6ad028e31734f2908034d0011a15a79be84228 (patch) | |
tree | 316e06bd60915b8976d5a608e808d82f103558be /OpenSim/Region/Framework/Scenes/SceneBase.cs | |
parent | refactor: rename Scene.IncomingCloseAgent() to CloseAgent() in order to make ... (diff) | |
download | opensim-SC_OLD-5a6ad028e31734f2908034d0011a15a79be84228.zip opensim-SC_OLD-5a6ad028e31734f2908034d0011a15a79be84228.tar.gz opensim-SC_OLD-5a6ad028e31734f2908034d0011a15a79be84228.tar.bz2 opensim-SC_OLD-5a6ad028e31734f2908034d0011a15a79be84228.tar.xz |
refactor: Rename Scene.AddNewClient() to AddNewAgent() to make it obvious in the code that this is symmetric with CloseAgent()
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneBase.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneBase.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneBase.cs b/OpenSim/Region/Framework/Scenes/SceneBase.cs index 4b37983..4f04706 100644 --- a/OpenSim/Region/Framework/Scenes/SceneBase.cs +++ b/OpenSim/Region/Framework/Scenes/SceneBase.cs | |||
@@ -216,7 +216,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
216 | 216 | ||
217 | #region Add/Remove Agent/Avatar | 217 | #region Add/Remove Agent/Avatar |
218 | 218 | ||
219 | public abstract ISceneAgent AddNewClient(IClientAPI client, PresenceType type); | 219 | public abstract ISceneAgent AddNewAgent(IClientAPI client, PresenceType type); |
220 | 220 | ||
221 | public abstract bool CloseAgent(UUID agentID, bool force); | 221 | public abstract bool CloseAgent(UUID agentID, bool force); |
222 | 222 | ||