aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces/IGridService.cs
diff options
context:
space:
mode:
authorRobert Adams2014-07-20 10:34:09 -0700
committerJustin Clark-Casey2014-08-02 00:55:47 +0100
commit01d13b4ad7d0cf1a235fd8041b0c009ede7e5d8a (patch)
tree18f061590352566758ad9837b1fdd2609e3f41bc /OpenSim/Services/Interfaces/IGridService.cs
parentminor: remove long unused RegionInfo.ignoreIncomingConfiguration (diff)
downloadopensim-SC_OLD-01d13b4ad7d0cf1a235fd8041b0c009ede7e5d8a.zip
opensim-SC_OLD-01d13b4ad7d0cf1a235fd8041b0c009ede7e5d8a.tar.gz
opensim-SC_OLD-01d13b4ad7d0cf1a235fd8041b0c009ede7e5d8a.tar.bz2
opensim-SC_OLD-01d13b4ad7d0cf1a235fd8041b0c009ede7e5d8a.tar.xz
Add code to GridService to check for overlapping of varregions
when registering a new region. Adds parameter "[GridService]SuppressVarRegionOverlapCheckOnRegistration=false" that can be turned on to suppress the error check if a simulator's database has old regions that overlap.
Diffstat (limited to '')
-rw-r--r--OpenSim/Services/Interfaces/IGridService.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Services/Interfaces/IGridService.cs b/OpenSim/Services/Interfaces/IGridService.cs
index dec3d35..b7bcd6b 100644
--- a/OpenSim/Services/Interfaces/IGridService.cs
+++ b/OpenSim/Services/Interfaces/IGridService.cs
@@ -186,12 +186,12 @@ namespace OpenSim.Services.Interfaces
186 protected IPEndPoint m_internalEndPoint; 186 protected IPEndPoint m_internalEndPoint;
187 187
188 /// <summary> 188 /// <summary>
189 /// The co-ordinate of this region. 189 /// The co-ordinate of this region in region units.
190 /// </summary> 190 /// </summary>
191 public int RegionCoordX { get { return (int)Util.WorldToRegionLoc((uint)RegionLocX); } } 191 public int RegionCoordX { get { return (int)Util.WorldToRegionLoc((uint)RegionLocX); } }
192 192
193 /// <summary> 193 /// <summary>
194 /// The co-ordinate of this region 194 /// The co-ordinate of this region in region units
195 /// </summary> 195 /// </summary>
196 public int RegionCoordY { get { return (int)Util.WorldToRegionLoc((uint)RegionLocY); } } 196 public int RegionCoordY { get { return (int)Util.WorldToRegionLoc((uint)RegionLocY); } }
197 197