aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid
diff options
context:
space:
mode:
authorCharles Krinke2008-02-02 16:43:57 +0000
committerCharles Krinke2008-02-02 16:43:57 +0000
commit6a1d9e8da13ed09fa8334db8763854c908742587 (patch)
tree75f0786187bd9def08256caeb465e98aa46e2e9b /OpenSim/Grid
parent* Fixed llSetTextureAnim to respect rate and Length and Start (diff)
downloadopensim-SC_OLD-6a1d9e8da13ed09fa8334db8763854c908742587.zip
opensim-SC_OLD-6a1d9e8da13ed09fa8334db8763854c908742587.tar.gz
opensim-SC_OLD-6a1d9e8da13ed09fa8334db8763854c908742587.tar.bz2
opensim-SC_OLD-6a1d9e8da13ed09fa8334db8763854c908742587.tar.xz
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".
Diffstat (limited to 'OpenSim/Grid')
-rw-r--r--OpenSim/Grid/GridServer/GridManager.cs13
1 files changed, 13 insertions, 0 deletions
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
282 TheSim.regionLocZ = 0; 282 TheSim.regionLocZ = 0;
283 TheSim.regionMapTextureID = new LLUUID((string)requestData["map-image-id"]); 283 TheSim.regionMapTextureID = new LLUUID((string)requestData["map-image-id"]);
284 284
285 // Added by daTwitch
286 // part of an initial brutish effort to provide accurate information (as per the xml region spec)
287 // wrt the ownership of a given region
288 // the (very bad) assumption is that this value is being read and handled inconsistently or
289 // not at all. Current strategy is to put the code in place to support the validity of this information
290 // and to roll forward debugging any issues from that point
291 //
292 // this particular section of the mod attempts to receive a value from the region's xml file by way of
293 // OSG1GridServices for the region's owner
294 //
295 TheSim.owner_uuid = (string)requestData["master_avatar_uuid"];
296 // end of daTwitch's mods to this file
297
285 try 298 try
286 { 299 {
287 TheSim.regionRecvKey = (string)requestData["recvkey"]; 300 TheSim.regionRecvKey = (string)requestData["recvkey"];