diff options
Diffstat (limited to 'OpenSim/Grid/GridServer/GridManager.cs')
-rw-r--r-- | OpenSim/Grid/GridServer/GridManager.cs | 13 |
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"]; |