From 6a1d9e8da13ed09fa8334db8763854c908742587 Mon Sep 17 00:00:00 2001 From: Charles Krinke Date: Sat, 2 Feb 2008 16:43:57 +0000 Subject: Thank you very much daTwitch for your first contribution to the C# simulator. This is the beginnings of support for storage of region owner in the MySQLManager table and the use of "owner_uuid". --- OpenSim/Grid/GridServer/GridManager.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'OpenSim/Grid/GridServer/GridManager.cs') diff --git a/OpenSim/Grid/GridServer/GridManager.cs b/OpenSim/Grid/GridServer/GridManager.cs index b4b91bb..541e06e 100644 --- a/OpenSim/Grid/GridServer/GridManager.cs +++ b/OpenSim/Grid/GridServer/GridManager.cs @@ -282,6 +282,19 @@ namespace OpenSim.Grid.GridServer TheSim.regionLocZ = 0; TheSim.regionMapTextureID = new LLUUID((string)requestData["map-image-id"]); + // 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 section of the mod attempts to receive a value from the region's xml file by way of + // OSG1GridServices for the region's owner + // + TheSim.owner_uuid = (string)requestData["master_avatar_uuid"]; + // end of daTwitch's mods to this file + try { TheSim.regionRecvKey = (string)requestData["recvkey"]; -- cgit v1.1