aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/GroupData.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/GroupData.cs')
-rw-r--r--OpenSim/Framework/GroupData.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Framework/GroupData.cs b/OpenSim/Framework/GroupData.cs
index 76034c0..9626553 100644
--- a/OpenSim/Framework/GroupData.cs
+++ b/OpenSim/Framework/GroupData.cs
@@ -42,11 +42,12 @@ namespace OpenSim.Framework
42 public string GroupName; 42 public string GroupName;
43 public bool AllowPublish = true; 43 public bool AllowPublish = true;
44 public bool MaturePublish = true; 44 public bool MaturePublish = true;
45 public UUID Charter = UUID.Zero; 45 public string Charter;
46 public UUID FounderID = UUID.Zero; 46 public UUID FounderID = UUID.Zero;
47 public UUID GroupPicture = UUID.Zero; 47 public UUID GroupPicture = UUID.Zero;
48 public int MembershipFee = 0; 48 public int MembershipFee = 0;
49 public bool OpenEnrollment = true; 49 public bool OpenEnrollment = true;
50 public bool ShowInList = true;
50 51
51 // Per user data 52 // Per user data
52 // 53 //
@@ -55,6 +56,8 @@ namespace OpenSim.Framework
55 public ulong GroupPowers = 0; 56 public ulong GroupPowers = 0;
56 public bool Active = false; 57 public bool Active = false;
57 public UUID ActiveRole = UUID.Zero; 58 public UUID ActiveRole = UUID.Zero;
59 public bool ListInProfile = false;
60 public string GroupTitle;
58 } 61 }
59 62
60 public struct GroupTitlesData 63 public struct GroupTitlesData
@@ -92,6 +95,7 @@ namespace OpenSim.Framework
92 public ulong AgentPowers; 95 public ulong AgentPowers;
93 public string Title; 96 public string Title;
94 public bool IsOwner; 97 public bool IsOwner;
98 public bool ListInProfile;
95 } 99 }
96 100
97 public struct GroupRolesData 101 public struct GroupRolesData