Go back to calling IncomingCloseAgent() in the "kick user" command for consistency instead of IClientAPI.Close() directly.

This no longer double counts child agent removals
This commit is contained in:
Justin Clark-Casey (justincc)
2012-06-08 00:59:39 +01:00
parent d547bcf8d1
commit 5c162ccd57
2 changed files with 1 additions and 7 deletions

View File

@@ -486,7 +486,7 @@ namespace OpenSim
else
presence.ControllingClient.Kick("\nThe OpenSim manager kicked you out.\n");
presence.ControllingClient.Close();
presence.Scene.IncomingCloseAgent(presence.UUID);
}
}