aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World/Land
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/CoreModules/World/Land')
-rw-r--r--OpenSim/Region/CoreModules/World/Land/LandChannel.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/World/Land/LandChannel.cs b/OpenSim/Region/CoreModules/World/Land/LandChannel.cs
index 9822af7..f0ab955 100644
--- a/OpenSim/Region/CoreModules/World/Land/LandChannel.cs
+++ b/OpenSim/Region/CoreModules/World/Land/LandChannel.cs
@@ -86,6 +86,15 @@ namespace OpenSim.Region.CoreModules.World.Land
86 return obj; 86 return obj;
87 } 87 }
88 88
89 public ILandObject GetLandObject(int localID)
90 {
91 if (m_landManagementModule != null)
92 {
93 return m_landManagementModule.GetLandObject(localID);
94 }
95 return null;
96 }
97
89 public ILandObject GetLandObject(int x, int y) 98 public ILandObject GetLandObject(int x, int y)
90 { 99 {
91 if (m_landManagementModule != null) 100 if (m_landManagementModule != null)