* Implements World.Parcels[] array for MRM scripting.

This commit is contained in:
Adam Frisby
2009-04-06 07:17:23 +00:00
parent 918c466881
commit 9e51c2db95
8 changed files with 81 additions and 5 deletions

View File

@@ -86,6 +86,15 @@ namespace OpenSim.Region.CoreModules.World.Land
return obj;
}
public ILandObject GetLandObject(int localID)
{
if (m_landManagementModule != null)
{
return m_landManagementModule.GetLandObject(localID);
}
return null;
}
public ILandObject GetLandObject(int x, int y)
{
if (m_landManagementModule != null)