diff options
author | Adam Frisby | 2007-06-24 17:43:05 +0000 |
---|---|---|
committer | Adam Frisby | 2007-06-24 17:43:05 +0000 |
commit | ffe0fc9bcca35ca8f7e48bd1170dd2a8efa016cd (patch) | |
tree | d344e1b4c51bf2b19f9642823fcde8a11a771d81 /OpenGridServices/OpenGridServices.GridServer | |
parent | * "create user" command now works with the MySQL Data Storage Engine on the u... (diff) | |
download | opensim-SC_OLD-ffe0fc9bcca35ca8f7e48bd1170dd2a8efa016cd.zip opensim-SC_OLD-ffe0fc9bcca35ca8f7e48bd1170dd2a8efa016cd.tar.gz opensim-SC_OLD-ffe0fc9bcca35ca8f7e48bd1170dd2a8efa016cd.tar.bz2 opensim-SC_OLD-ffe0fc9bcca35ca8f7e48bd1170dd2a8efa016cd.tar.xz |
* Added extensions to trunk/OGS to support Sugilite regions. Anyone running a grid is highly advised to update before 1.18 hits on monday.
Diffstat (limited to 'OpenGridServices/OpenGridServices.GridServer')
-rw-r--r-- | OpenGridServices/OpenGridServices.GridServer/GridManager.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenGridServices/OpenGridServices.GridServer/GridManager.cs b/OpenGridServices/OpenGridServices.GridServer/GridManager.cs index 10cbf82..79e74fa 100644 --- a/OpenGridServices/OpenGridServices.GridServer/GridManager.cs +++ b/OpenGridServices/OpenGridServices.GridServer/GridManager.cs | |||
@@ -360,6 +360,13 @@ namespace OpenGridServices.GridServer | |||
360 | simProfileBlock["agents"] = 1; | 360 | simProfileBlock["agents"] = 1; |
361 | simProfileBlock["map-image-id"] = aSim.Value.regionMapTextureID.ToString(); | 361 | simProfileBlock["map-image-id"] = aSim.Value.regionMapTextureID.ToString(); |
362 | 362 | ||
363 | // For Sugilite compatibility | ||
364 | simProfileBlock["regionhandle"] = aSim.Value.regionHandle.ToString(); | ||
365 | simProfileBlock["sim_ip"] = aSim.Value.serverIP.ToString(); | ||
366 | simProfileBlock["sim_port"] = aSim.Value.serverPort.ToString(); | ||
367 | simProfileBlock["sim_uri"] = aSim.Value.serverURI.ToString(); | ||
368 | simProfileBlock["uuid"] = aSim.Value.UUID.ToStringHyphenated(); | ||
369 | |||
363 | simProfileList.Add(simProfileBlock); | 370 | simProfileList.Add(simProfileBlock); |
364 | } | 371 | } |
365 | OpenSim.Framework.Console.MainConsole.Instance.Verbose("World map request processed, returned " + simProfileList.Count.ToString() + " region(s) in range via FastMode"); | 372 | OpenSim.Framework.Console.MainConsole.Instance.Verbose("World map request processed, returned " + simProfileList.Count.ToString() + " region(s) in range via FastMode"); |