ok it is GetLandObjectClippedXY

This commit is contained in:
UbitUmarov
2020-09-01 21:22:06 +01:00
parent eae2f87cae
commit c8cb8a376b
6 changed files with 12 additions and 12 deletions

View File

@@ -1874,7 +1874,7 @@ namespace OpenSim.Region.CoreModules.World.Permissions
return false;
Vector3 pos = sog.AbsolutePosition;
ILandObject parcel = m_scene.LandChannel.GetLandObjectClipedXY(pos.X, pos.Y);
ILandObject parcel = m_scene.LandChannel.GetLandObjectClippedXY(pos.X, pos.Y);
if (parcel == null)
return false;
@@ -2080,7 +2080,7 @@ namespace OpenSim.Region.CoreModules.World.Permissions
parcel = m_scene.LandChannel.GetLandObject(id);
else
{
parcel = m_scene.LandChannel.GetLandObjectClipedXY(X, Y);
parcel = m_scene.LandChannel.GetLandObjectClippedXY(X, Y);
}
if (parcel == null)