Fix - Viewer crash during HG Teleport
Signed-off-by: Robert Adams <misterblue@misterblue.com>0.8.0.3
parent
1913ab5ad5
commit
cf61cdf58c
|
@ -244,13 +244,13 @@ namespace OpenSim.Services.Connectors.Hypergrid
|
||||||
}
|
}
|
||||||
if (hash["size_x"] != null)
|
if (hash["size_x"] != null)
|
||||||
{
|
{
|
||||||
Int32.TryParse((string)hash["x"], out n);
|
Int32.TryParse((string)hash["size_x"], out n);
|
||||||
region.RegionSizeX = n;
|
region.RegionSizeX = n;
|
||||||
//m_log.Debug(">> HERE, x: " + region.RegionLocX);
|
//m_log.Debug(">> HERE, x: " + region.RegionLocX);
|
||||||
}
|
}
|
||||||
if (hash["size_y"] != null)
|
if (hash["size_y"] != null)
|
||||||
{
|
{
|
||||||
Int32.TryParse((string)hash["y"], out n);
|
Int32.TryParse((string)hash["size_y"], out n);
|
||||||
region.RegionSizeY = n;
|
region.RegionSizeY = n;
|
||||||
//m_log.Debug(">> HERE, y: " + region.RegionLocY);
|
//m_log.Debug(">> HERE, y: " + region.RegionLocY);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue