aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/Scene.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Scene.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.cs18
1 files changed, 17 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs
index 89dc130..f12fb92 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.cs
@@ -1964,7 +1964,23 @@ namespace OpenSim.Region.Environment.Scenes
1964 { 1964 {
1965 m_eventManager.TriggerOnPluginConsole(args); 1965 m_eventManager.TriggerOnPluginConsole(args);
1966 } 1966 }
1967 1967 public double GetLandHeight(int x, int y)
1968 {
1969 return Terrain.GetHeight(x, y);
1970 }
1971 public LLUUID GetLandOwner(float x, float y)
1972 {
1973 Land land = LandManager.getLandObject(x, y);
1974 if (land == null)
1975 {
1976 return LLUUID.Zero;
1977 }
1978 else
1979 {
1980 return land.landData.ownerID;
1981 }
1982 }
1983
1968 #endregion 1984 #endregion
1969 1985
1970 #region Script Engine 1986 #region Script Engine