diff options
author | onefang | 2019-08-05 04:17:54 +1000 |
---|---|---|
committer | onefang | 2019-08-05 04:17:54 +1000 |
commit | 412e317b2f54db3b316d17d10dbf6c6ff7fa22c6 (patch) | |
tree | eb5c1ce93fdf12f1edddf6977bf463d99413f2fc /OpenSim/Services/GridService | |
parent | More basic web server. (diff) | |
download | opensim-SC_OLD-412e317b2f54db3b316d17d10dbf6c6ff7fa22c6.zip opensim-SC_OLD-412e317b2f54db3b316d17d10dbf6c6ff7fa22c6.tar.gz opensim-SC_OLD-412e317b2f54db3b316d17d10dbf6c6ff7fa22c6.tar.bz2 opensim-SC_OLD-412e317b2f54db3b316d17d10dbf6c6ff7fa22c6.tar.xz |
Limits -= 2
Low Y regions are no longer reserved for HG links.
Varregions don't have to be square.
Both now report a warning, but continue anyway.
Cool VL Viewer handles non square regions, Singularity crashes. Not
tested on others.
Diffstat (limited to 'OpenSim/Services/GridService')
-rw-r--r-- | OpenSim/Services/GridService/GridService.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Services/GridService/GridService.cs b/OpenSim/Services/GridService/GridService.cs index 2a2d8a8..e0500a6 100644 --- a/OpenSim/Services/GridService/GridService.cs +++ b/OpenSim/Services/GridService/GridService.cs | |||
@@ -198,7 +198,8 @@ namespace OpenSim.Services.GridService | |||
198 | return "Invalid RegionID - cannot be zero UUID"; | 198 | return "Invalid RegionID - cannot be zero UUID"; |
199 | 199 | ||
200 | if (regionInfos.RegionLocY <= Constants.MaximumRegionSize) | 200 | if (regionInfos.RegionLocY <= Constants.MaximumRegionSize) |
201 | return "Region location reserved for HG links coord Y must be higher than " + (Constants.MaximumRegionSize/256).ToString(); | 201 | m_log.WarnFormat("{0} Region location reserved for HG links coord Y should be higher than {1}.", LogHeader, (Constants.MaximumRegionSize/256).ToString()); |
202 | //// return "Region location reserved for HG links coord Y must be higher than " + (Constants.MaximumRegionSize/256).ToString(); | ||
202 | 203 | ||
203 | String reason = "Region overlaps another region"; | 204 | String reason = "Region overlaps another region"; |
204 | 205 | ||