aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenGridServices
diff options
context:
space:
mode:
authorAdam Frisby2007-05-30 04:32:30 +0000
committerAdam Frisby2007-05-30 04:32:30 +0000
commit84dc744faaf334f9c42fb988a38a8a67a0bdc6cc (patch)
tree74b2d68acabdde620fb86fb1dc2ac900f7dc7875 /OpenGridServices
parent* Bugfixes. Still not appearing correctly however. (diff)
downloadopensim-SC_OLD-84dc744faaf334f9c42fb988a38a8a67a0bdc6cc.zip
opensim-SC_OLD-84dc744faaf334f9c42fb988a38a8a67a0bdc6cc.tar.gz
opensim-SC_OLD-84dc744faaf334f9c42fb988a38a8a67a0bdc6cc.tar.bz2
opensim-SC_OLD-84dc744faaf334f9c42fb988a38a8a67a0bdc6cc.tar.xz
* World map! Yay!
* Using ASCII encoding for text not UTF8 encoding (causes the client to burp) * Cannot send uints via Nwc.XmlRpc - it asplodes and returns zero.
Diffstat (limited to 'OpenGridServices')
-rw-r--r--OpenGridServices/OpenGridServices.GridServer/GridManager.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenGridServices/OpenGridServices.GridServer/GridManager.cs b/OpenGridServices/OpenGridServices.GridServer/GridManager.cs
index 8d4517f..6315a4a 100644
--- a/OpenGridServices/OpenGridServices.GridServer/GridManager.cs
+++ b/OpenGridServices/OpenGridServices.GridServer/GridManager.cs
@@ -324,8 +324,8 @@ namespace OpenGridServices.GridServer
324 foreach (KeyValuePair<ulong, SimProfileData> aSim in neighbours) 324 foreach (KeyValuePair<ulong, SimProfileData> aSim in neighbours)
325 { 325 {
326 Hashtable simProfileBlock = new Hashtable(); 326 Hashtable simProfileBlock = new Hashtable();
327 simProfileBlock["x"] = aSim.Value.regionLocX; 327 simProfileBlock["x"] = aSim.Value.regionLocX.ToString();
328 simProfileBlock["y"] = aSim.Value.regionLocY; 328 simProfileBlock["y"] = aSim.Value.regionLocY.ToString();
329 simProfileBlock["name"] = aSim.Value.regionName; 329 simProfileBlock["name"] = aSim.Value.regionName;
330 simProfileBlock["access"] = 21; 330 simProfileBlock["access"] = 21;
331 simProfileBlock["region-flags"] = 512; 331 simProfileBlock["region-flags"] = 512;