aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Services/Connectors/Hypergrid/UserAgentServiceConnector.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Services/Connectors/Hypergrid/UserAgentServiceConnector.cs b/OpenSim/Services/Connectors/Hypergrid/UserAgentServiceConnector.cs
index d0a0b17..20397a1 100644
--- a/OpenSim/Services/Connectors/Hypergrid/UserAgentServiceConnector.cs
+++ b/OpenSim/Services/Connectors/Hypergrid/UserAgentServiceConnector.cs
@@ -244,13 +244,13 @@ namespace OpenSim.Services.Connectors.Hypergrid
244 } 244 }
245 if (hash["size_x"] != null) 245 if (hash["size_x"] != null)
246 { 246 {
247 Int32.TryParse((string)hash["x"], out n); 247 Int32.TryParse((string)hash["size_x"], out n);
248 region.RegionSizeX = n; 248 region.RegionSizeX = n;
249 //m_log.Debug(">> HERE, x: " + region.RegionLocX); 249 //m_log.Debug(">> HERE, x: " + region.RegionLocX);
250 } 250 }
251 if (hash["size_y"] != null) 251 if (hash["size_y"] != null)
252 { 252 {
253 Int32.TryParse((string)hash["y"], out n); 253 Int32.TryParse((string)hash["size_y"], out n);
254 region.RegionSizeY = n; 254 region.RegionSizeY = n;
255 //m_log.Debug(">> HERE, y: " + region.RegionLocY); 255 //m_log.Debug(">> HERE, y: " + region.RegionLocY);
256 } 256 }