aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/World/Land/LandChannel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Environment/Modules/World/Land/LandChannel.cs')
-rw-r--r--OpenSim/Region/Environment/Modules/World/Land/LandChannel.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Modules/World/Land/LandChannel.cs b/OpenSim/Region/Environment/Modules/World/Land/LandChannel.cs
index 1e1291a..8747bd4 100644
--- a/OpenSim/Region/Environment/Modules/World/Land/LandChannel.cs
+++ b/OpenSim/Region/Environment/Modules/World/Land/LandChannel.cs
@@ -105,6 +105,16 @@ namespace OpenSim.Region.Environment.Modules.World.Land
105 return obj; 105 return obj;
106 } 106 }
107 107
108 public List<ILandObject> AllParcels()
109 {
110 if (m_landManagementModule != null)
111 {
112 return m_landManagementModule.AllParcels();
113 }
114
115 return new List<ILandObject>();
116 }
117
108 public List<ILandObject> ParcelsNearPoint(Vector3 position) 118 public List<ILandObject> ParcelsNearPoint(Vector3 position)
109 { 119 {
110 if (m_landManagementModule != null) 120 if (m_landManagementModule != null)