aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/GroupsModule.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-03-29 22:02:02 +0100
committerJustin Clark-Casey (justincc)2010-03-29 22:02:02 +0100
commit24fc4703d0b9885102bc59296eb334e7b6d89e0f (patch)
tree38a995b36eedb2108d89d91a5f45d26155644bc3 /OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/GroupsModule.cs
parentRemove a redundant method body (diff)
downloadopensim-SC_OLD-24fc4703d0b9885102bc59296eb334e7b6d89e0f.zip
opensim-SC_OLD-24fc4703d0b9885102bc59296eb334e7b6d89e0f.tar.gz
opensim-SC_OLD-24fc4703d0b9885102bc59296eb334e7b6d89e0f.tar.bz2
opensim-SC_OLD-24fc4703d0b9885102bc59296eb334e7b6d89e0f.tar.xz
fix build break. First argument of GetGroupRecord is not a uuid
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/GroupsModule.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/GroupsModule.cs b/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/GroupsModule.cs
index 6282272..61c51e0 100644
--- a/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/GroupsModule.cs
+++ b/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/GroupsModule.cs
@@ -597,7 +597,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups
597 597
598 public GroupRecord GetGroupRecord(string name) 598 public GroupRecord GetGroupRecord(string name)
599 { 599 {
600 return m_groupData.GetGroupRecord(UUID.Zero, UUID.Zero, name); 600 return m_groupData.GetGroupRecord(null, UUID.Zero, name);
601 } 601 }
602 602
603 public void ActivateGroup(IClientAPI remoteClient, UUID groupID) 603 public void ActivateGroup(IClientAPI remoteClient, UUID groupID)