aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/ILandChannel.cs
diff options
context:
space:
mode:
authorUbitUmarov2018-07-21 18:31:58 +0100
committerUbitUmarov2018-07-21 18:31:58 +0100
commite15fca60d1efcfe32e795e3494e35bdae26111e2 (patch)
tree0f564ff57e615fec156bc262ac704c776844cd8c /OpenSim/Framework/ILandChannel.cs
parentmantis8341: fix MOD and LS apis configuration read from ossl file (diff)
downloadopensim-SC-e15fca60d1efcfe32e795e3494e35bdae26111e2.zip
opensim-SC-e15fca60d1efcfe32e795e3494e35bdae26111e2.tar.gz
opensim-SC-e15fca60d1efcfe32e795e3494e35bdae26111e2.tar.bz2
opensim-SC-e15fca60d1efcfe32e795e3494e35bdae26111e2.tar.xz
mantis8342: make max ban height above ground configurable per regions instance with ini file option BanLineSafeHeight
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/ILandChannel.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Framework/ILandChannel.cs b/OpenSim/Framework/ILandChannel.cs
index 8667837..e5ea596 100644
--- a/OpenSim/Framework/ILandChannel.cs
+++ b/OpenSim/Framework/ILandChannel.cs
@@ -33,6 +33,8 @@ namespace OpenSim.Region.Framework.Interfaces
33{ 33{
34 public interface ILandChannel 34 public interface ILandChannel
35 { 35 {
36
37 float BanLineSafeHeight {get;}
36 /// <summary> 38 /// <summary>
37 /// Get all parcels 39 /// Get all parcels
38 /// </summary> 40 /// </summary>
@@ -97,6 +99,5 @@ namespace OpenSim.Region.Framework.Interfaces
97 void Join(int start_x, int start_y, int end_x, int end_y, UUID attempting_user_id); 99 void Join(int start_x, int start_y, int end_x, int end_y, UUID attempting_user_id);
98 void Subdivide(int start_x, int start_y, int end_x, int end_y, UUID attempting_user_id); 100 void Subdivide(int start_x, int start_y, int end_x, int end_y, UUID attempting_user_id);
99 void sendClientInitialLandInfo(IClientAPI remoteClient); 101 void sendClientInitialLandInfo(IClientAPI remoteClient);
100
101 } 102 }
102} 103}