From 599f8b884b073e68e1e472ab09d6e1c3728fd40a Mon Sep 17 00:00:00 2001 From: Charles Krinke Date: Sat, 2 Feb 2008 04:17:38 +0000 Subject: [PATCH] Add last entry "owner_uuid" back into regions table definition. --- OpenSim/Framework/Data/RegionProfileData.cs | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/OpenSim/Framework/Data/RegionProfileData.cs b/OpenSim/Framework/Data/RegionProfileData.cs index 779e98c80a..48d3ebc68d 100644 --- a/OpenSim/Framework/Data/RegionProfileData.cs +++ b/OpenSim/Framework/Data/RegionProfileData.cs @@ -123,6 +123,24 @@ namespace OpenSim.Framework.Data /// public LLUUID regionMapTextureID = new LLUUID("00000000-0000-0000-9999-000000000006"); + // added by daTwitch + // part of an initial brutish effort to provide accurate information (as per the xml region spec) + // wrt the ownership of a given region + // the (very bad) assumption is that this value is being read and handled inconsistently or + // not at all. Current strategy is to put the code in place to support the validity of this information + // and to roll forward debugging any issues from that point + // + // this particular mod to the file provides support within the spec for RegionProfileData for the + // owner_uuid for the region + // + /// + /// this particular mod to the file provides support within the spec for RegionProfileData for the + /// owner_uuid for the region + /// + public LLUUID owner_uuid; + // + // end of daTwitch mod to this file + /// /// Get Sim profile data from grid server when in grid mode /// @@ -198,4 +216,4 @@ namespace OpenSim.Framework.Data return simData; } } -} \ No newline at end of file +}