aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Connectors/Hypergrid/UserAgentServiceConnector.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Services/Connectors/Hypergrid/UserAgentServiceConnector.cs')
-rw-r--r--OpenSim/Services/Connectors/Hypergrid/UserAgentServiceConnector.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Services/Connectors/Hypergrid/UserAgentServiceConnector.cs b/OpenSim/Services/Connectors/Hypergrid/UserAgentServiceConnector.cs
index afbd093..a73bf9e 100644
--- a/OpenSim/Services/Connectors/Hypergrid/UserAgentServiceConnector.cs
+++ b/OpenSim/Services/Connectors/Hypergrid/UserAgentServiceConnector.cs
@@ -332,6 +332,9 @@ namespace OpenSim.Services.Connectors.Hypergrid
332 UInt32.TryParse((string)hash["http_port"], out p); 332 UInt32.TryParse((string)hash["http_port"], out p);
333 region.HttpPort = p; 333 region.HttpPort = p;
334 } 334 }
335 if (hash.ContainsKey("server_uri") && hash["server_uri"] != null)
336 region.ServerURI = (string)hash["server_uri"];
337
335 if (hash["internal_port"] != null) 338 if (hash["internal_port"] != null)
336 { 339 {
337 int p = 0; 340 int p = 0;