mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
Fix - Viewer crash during HG Teleport
Signed-off-by: Robert Adams <misterblue@misterblue.com>
This commit is contained in:
committed by
Robert Adams
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);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user