diff options
author | Justin Clark-Casey (justincc) | 2013-09-27 19:14:21 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-09-27 19:14:21 +0100 |
commit | b16bc7b01ca0691758e66f85238d657f02271082 (patch) | |
tree | 4e121ace10b7dee25e1311268a84d3e95946f6f9 /OpenSim/Region/ScriptEngine/Shared/Api | |
parent | minor code formatting for the sake of consistency and readability (diff) | |
download | opensim-SC_OLD-b16bc7b01ca0691758e66f85238d657f02271082.zip opensim-SC_OLD-b16bc7b01ca0691758e66f85238d657f02271082.tar.gz opensim-SC_OLD-b16bc7b01ca0691758e66f85238d657f02271082.tar.bz2 opensim-SC_OLD-b16bc7b01ca0691758e66f85238d657f02271082.tar.xz |
refactor: rename Scene.IncomingCloseAgent() to CloseAgent() in order to make it clear that all non-clientstack callers should be using this rather than RemoveClient() in order to step through the ScenePresence state machine properly.
Adds IScene.CloseAgent() to replace RemoveClient()
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs index 415166a..f4d5562 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs | |||
@@ -2964,7 +2964,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
2964 | sp.ControllingClient.Kick(alert); | 2964 | sp.ControllingClient.Kick(alert); |
2965 | 2965 | ||
2966 | // ...and close on our side | 2966 | // ...and close on our side |
2967 | sp.Scene.IncomingCloseAgent(sp.UUID, false); | 2967 | sp.Scene.CloseAgent(sp.UUID, false); |
2968 | } | 2968 | } |
2969 | }); | 2969 | }); |
2970 | } | 2970 | } |