From d455d579d03523b98e9f0161716942889b7913c3 Mon Sep 17 00:00:00 2001 From: Dr Scofield Date: Wed, 22 Apr 2009 18:00:59 +0000 Subject: more cleanup --- OpenSim/Region/CoreModules/Avatar/Groups/GroupsModule.cs | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'OpenSim/Region/CoreModules') diff --git a/OpenSim/Region/CoreModules/Avatar/Groups/GroupsModule.cs b/OpenSim/Region/CoreModules/Avatar/Groups/GroupsModule.cs index 4daea1f..02ea4cd 100644 --- a/OpenSim/Region/CoreModules/Avatar/Groups/GroupsModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/Groups/GroupsModule.cs @@ -87,7 +87,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Groups osGroup.GroupName = "OpenSimulator Testing"; osGroup.GroupPowers = (uint)(GroupPowers.AllowLandmark | - GroupPowers.AllowSetHome); + GroupPowers.AllowSetHome); m_GroupMap[opensimulatorGroupID] = osGroup; } m_SceneList.Add(scene); @@ -96,8 +96,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Groups scene.EventManager.OnNewClient += OnNewClient; scene.EventManager.OnClientClosed += OnClientClosed; - scene.EventManager.OnIncomingInstantMessage += - OnGridInstantMessage; + scene.EventManager.OnIncomingInstantMessage += OnGridInstantMessage; } public void PostInitialise() @@ -152,7 +151,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Groups } private void OnAgentDataUpdateRequest(IClientAPI remoteClient, - UUID AgentID, UUID SessionID) + UUID AgentID, UUID SessionID) { UUID ActiveGroupID; string ActiveGroupName; @@ -168,8 +167,8 @@ namespace OpenSim.Region.CoreModules.Avatar.Groups ActiveGroupPowers = osGroup.GroupPowers; remoteClient.SendAgentDataUpdate(AgentID, ActiveGroupID, firstname, - lastname, ActiveGroupPowers, ActiveGroupName, - ActiveGroupTitle); + lastname, ActiveGroupPowers, ActiveGroupName, + ActiveGroupTitle); } private void OnInstantMessage(IClientAPI client, GridInstantMessage im) -- cgit v1.1