suspend the use of DisableSimulator, that is causing teleport and crossing issues

This commit is contained in:
UbitUmarov
2015-11-25 04:13:13 +00:00
parent 1484348d7f
commit 172bb05ec2
3 changed files with 15 additions and 16 deletions

View File

@@ -753,7 +753,7 @@ namespace OpenSim.Framework
newy *= Constants.RegionSize;
if (oldy + oldsizey + drawdist < newy)
return true;
if (newy + newsizey + drawdist< oldy)
if (newy + newsizey + drawdist < oldy)
return true;
return false;