From 2f79f463ea07369f6ec154c67b25705cf1a2a616 Mon Sep 17 00:00:00 2001 From: Terry Date: Tue, 12 Nov 2019 11:02:10 -0500 Subject: 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 Signed-off-by: UbitUmarov --- OpenSim/Data/Null/NullRegionData.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'OpenSim/Data/Null') 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 return null; } - public List Get(int startX, int startY, int endX, int endY, UUID scopeID) + //BA MOD... + public RegionData GetSpecific(string regionName, UUID ScopeID) + { + return null; + } + + public List Get(int startX, int startY, int endX, int endY, UUID scopeID) { if (m_useStaticInstance && Instance != this) return Instance.Get(startX, startY, endX, endY, scopeID); -- cgit v1.1