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/IRegionData.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/IRegionData.cs')
-rw-r--r-- | OpenSim/Data/IRegionData.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Data/IRegionData.cs b/OpenSim/Data/IRegionData.cs index c8e38a4..d67b5fa 100644 --- a/OpenSim/Data/IRegionData.cs +++ b/OpenSim/Data/IRegionData.cs | |||
@@ -71,6 +71,10 @@ namespace OpenSim.Data | |||
71 | { | 71 | { |
72 | RegionData Get(UUID regionID, UUID ScopeID); | 72 | RegionData Get(UUID regionID, UUID ScopeID); |
73 | List<RegionData> Get(string regionName, UUID ScopeID); | 73 | List<RegionData> Get(string regionName, UUID ScopeID); |
74 | |||
75 | //BA MOD.... | ||
76 | RegionData GetSpecific(string regionName, UUID ScopeID); | ||
77 | |||
74 | RegionData Get(int x, int y, UUID ScopeID); | 78 | RegionData Get(int x, int y, UUID ScopeID); |
75 | List<RegionData> Get(int xStart, int yStart, int xEnd, int yEnd, UUID ScopeID); | 79 | List<RegionData> Get(int xStart, int yStart, int xEnd, int yEnd, UUID ScopeID); |
76 | 80 | ||