aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Communications/OGS1/OGS1GridServices.cs')
-rw-r--r--OpenSim/Region/Communications/OGS1/OGS1GridServices.cs17
1 files changed, 16 insertions, 1 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
index 8429d00..1576bf3 100644
--- a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
+++ b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
@@ -110,6 +110,21 @@ namespace OpenSim.Region.Communications.OGS1
110 GridParams["remoting_port"] = NetworkServersInfo.RemotingListenerPort.ToString(); 110 GridParams["remoting_port"] = NetworkServersInfo.RemotingListenerPort.ToString();
111 GridParams["map-image-id"] = regionInfo.EstateSettings.terrainImageID.ToString(); 111 GridParams["map-image-id"] = regionInfo.EstateSettings.terrainImageID.ToString();
112 112
113
114 // Added by daTwitch
115 // part of an initial brutish effort to provide accurate information (as per the xml region spec)
116 // wrt the ownership of a given region
117 // the (very bad) assumption is that this value is being read and handled inconsistently or
118 // not at all. Current strategy is to put the code in place to support the validity of this information
119 // and to roll forward debugging any issues from that point
120 //
121 // this particular section of the mod attempts to supply a value from the region's xml file to the grid
122 // server for the UUID of the region's owner (master avatar)
123 //
124 GridParams["master_avatar_uuid"] = regionInfo.MasterAvatarAssignedUUID.ToString();
125 // end of daTwitch's addition to this file
126
127
113 // Package into an XMLRPC Request 128 // Package into an XMLRPC Request
114 ArrayList SendParams = new ArrayList(); 129 ArrayList SendParams = new ArrayList();
115 SendParams.Add(GridParams); 130 SendParams.Add(GridParams);
@@ -1297,4 +1312,4 @@ namespace OpenSim.Region.Communications.OGS1
1297 } 1312 }
1298 } 1313 }
1299 1314
1300} \ No newline at end of file 1315}