Revert "Patch from mcortez: Update groups, add ALPHA Siman grid connector for groups"

Causes an exception within HttpServer, headers have already been sent.

This reverts commit 8187fccd25.
This commit is contained in:
Melanie
2010-05-06 16:38:23 +01:00
parent 533bd1bd9b
commit 9ecebcdf13
5 changed files with 437 additions and 207 deletions

View File

@@ -176,7 +176,6 @@ namespace OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups
scene.EventManager.OnNewClient += OnNewClient;
scene.EventManager.OnIncomingInstantMessage += OnGridInstantMessage;
// The InstantMessageModule itself doesn't do this,
// so lets see if things explode if we don't do it
// scene.EventManager.OnClientClosed += OnClientClosed;
@@ -510,7 +509,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups
IClientAPI ejectee = GetActiveClient(ejecteeID);
if (ejectee != null)
{
UUID groupID = new UUID(im.fromAgentID);
UUID groupID = new UUID(im.imSessionID);
ejectee.SendAgentDropGroup(groupID);
}
}