From 7d89e122930be39e84a6d174548fa2d12ac0484a Mon Sep 17 00:00:00 2001 From: Teravus Ovares Date: Sat, 6 Sep 2008 07:52:41 +0000 Subject: * This is the fabled LibOMV update with all of the libOMV types from JHurliman * This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke. --- OpenSim/Framework/LLGroup.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'OpenSim/Framework/LLGroup.cs') diff --git a/OpenSim/Framework/LLGroup.cs b/OpenSim/Framework/LLGroup.cs index 9958780..53d42a4 100644 --- a/OpenSim/Framework/LLGroup.cs +++ b/OpenSim/Framework/LLGroup.cs @@ -28,7 +28,7 @@ using System; using System.Collections; -using libsecondlife; +using OpenMetaverse; using System.Collections.Generic; using System.Text; @@ -37,8 +37,8 @@ namespace OpenSim.Framework public class GroupData { public string ActiveGroupTitle; - public LLUUID GroupID; - public List GroupMembers; + public UUID GroupID; + public List GroupMembers; public string groupName; public uint groupPowers = (uint)(GroupPowers.LandAllowLandmark | GroupPowers.LandAllowSetHome); public List GroupTitles; @@ -46,10 +46,10 @@ namespace OpenSim.Framework public bool AllowPublish = true; public string Charter = "Cool Group Yeah!"; public int contribution = 0; - public LLUUID FounderID = LLUUID.Zero; + public UUID FounderID = UUID.Zero; public int groupMembershipCost = 0; public int groupRollsCount = 1; - public LLUUID GroupPicture = LLUUID.Zero; + public UUID GroupPicture = UUID.Zero; public bool MaturePublish = true; public int MembershipFee = 0; public bool OpenEnrollment = true; @@ -58,7 +58,7 @@ namespace OpenSim.Framework public GroupData() { GroupTitles = new List(); - GroupMembers = new List(); + GroupMembers = new List(); } public GroupPowers ActiveGroupPowers @@ -70,11 +70,11 @@ namespace OpenSim.Framework public class GroupList { - public List m_GroupList; + public List m_GroupList; public GroupList() { - m_GroupList = new List(); + m_GroupList = new List(); } } } -- cgit v1.1