diff options
author | Terry | 2019-11-12 11:02:10 -0500 |
---|---|---|
committer | UbitUmarov | 2019-11-14 05:26:54 +0000 |
commit | 2f79f463ea07369f6ec154c67b25705cf1a2a616 (patch) | |
tree | da64db8ae91f5dc6364dfb0f3c2cd1a026432cc2 /OpenSim/Data/Null/NullRegionData.cs | |
parent | mantis 8627: handle the case constant compareOp constant on Yengine (diff) | |
download | opensim-SC-2f79f463ea07369f6ec154c67b25705cf1a2a616.zip opensim-SC-2f79f463ea07369f6ec154c67b25705cf1a2a616.tar.gz opensim-SC-2f79f463ea07369f6ec154c67b25705cf1a2a616.tar.bz2 opensim-SC-2f79f463ea07369f6ec154c67b25705cf1a2a616.tar.xz |
Attempt to fix the issue where, when logging into the grid, the user supplies a region name, but instead of going to the specific region, they are sent to a region "Like" the one specified.
Signed-off-by: Terry <terry@digiworldz.com>
Signed-off-by: UbitUmarov <ajlduarte@sapo.pt>
Diffstat (limited to 'OpenSim/Data/Null/NullRegionData.cs')
-rw-r--r-- | OpenSim/Data/Null/NullRegionData.cs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/OpenSim/Data/Null/NullRegionData.cs b/OpenSim/Data/Null/NullRegionData.cs index 595db2f..a4385fe 100644 --- a/OpenSim/Data/Null/NullRegionData.cs +++ b/OpenSim/Data/Null/NullRegionData.cs | |||
@@ -166,7 +166,13 @@ namespace OpenSim.Data.Null | |||
166 | return null; | 166 | return null; |
167 | } | 167 | } |
168 | 168 | ||
169 | public List<RegionData> Get(int startX, int startY, int endX, int endY, UUID scopeID) | 169 | //BA MOD... |
170 | public RegionData GetSpecific(string regionName, UUID ScopeID) | ||
171 | { | ||
172 | return null; | ||
173 | } | ||
174 | |||
175 | public List<RegionData> Get(int startX, int startY, int endX, int endY, UUID scopeID) | ||
170 | { | 176 | { |
171 | if (m_useStaticInstance && Instance != this) | 177 | if (m_useStaticInstance && Instance != this) |
172 | return Instance.Get(startX, startY, endX, endY, scopeID); | 178 | return Instance.Get(startX, startY, endX, endY, scopeID); |