diff options
author | Justin Clark-Casey (justincc) | 2010-03-29 22:02:02 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-03-29 22:02:02 +0100 |
commit | 24fc4703d0b9885102bc59296eb334e7b6d89e0f (patch) | |
tree | 38a995b36eedb2108d89d91a5f45d26155644bc3 | |
parent | Remove a redundant method body (diff) | |
download | opensim-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
-rw-r--r-- | OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/GroupsModule.cs | 2 |
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) |