Fix - Viewer crash during HG Teleport

Signed-off-by: Robert Adams <misterblue@misterblue.com>
This commit is contained in:
Roger Kirkman
2014-02-05 13:31:01 +00:00
committed by Robert Adams
parent 1913ab5ad5
commit cf61cdf58c

View File

@@ -244,13 +244,13 @@ namespace OpenSim.Services.Connectors.Hypergrid
}
if (hash["size_x"] != null)
{
Int32.TryParse((string)hash["x"], out n);
Int32.TryParse((string)hash["size_x"], out n);
region.RegionSizeX = n;
//m_log.Debug(">> HERE, x: " + region.RegionLocX);
}
if (hash["size_y"] != null)
{
Int32.TryParse((string)hash["y"], out n);
Int32.TryParse((string)hash["size_y"], out n);
region.RegionSizeY = n;
//m_log.Debug(">> HERE, y: " + region.RegionLocY);
}