diff options
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/HGGridConnector.cs | 14 | ||||
-rw-r--r-- | OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/LocalGridServiceConnector.cs | 16 |
2 files changed, 30 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/HGGridConnector.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/HGGridConnector.cs index 93cb60c..501f730 100644 --- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/HGGridConnector.cs +++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/HGGridConnector.cs | |||
@@ -808,6 +808,20 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Grid | |||
808 | 808 | ||
809 | #endregion | 809 | #endregion |
810 | 810 | ||
811 | public List<GridRegion> GetDefaultRegions(UUID scopeID) | ||
812 | { | ||
813 | return null; | ||
814 | } | ||
815 | |||
816 | public List<GridRegion> GetFallbackRegions(UUID scopeID, int x, int y) | ||
817 | { | ||
818 | return null; | ||
819 | } | ||
820 | |||
821 | public int GetRegionFlags(UUID scopeID, UUID regionID) | ||
822 | { | ||
823 | return 0; | ||
824 | } | ||
811 | 825 | ||
812 | } | 826 | } |
813 | } | 827 | } |
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/LocalGridServiceConnector.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/LocalGridServiceConnector.cs index 1c72488..f0081fc 100644 --- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/LocalGridServiceConnector.cs +++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/LocalGridServiceConnector.cs | |||
@@ -250,5 +250,21 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Grid | |||
250 | m_log.InfoFormat(" {0} @ {1}={2}", r.RegionName, r.RegionLocX / Constants.RegionSize, r.RegionLocY / Constants.RegionSize); | 250 | m_log.InfoFormat(" {0} @ {1}={2}", r.RegionName, r.RegionLocX / Constants.RegionSize, r.RegionLocY / Constants.RegionSize); |
251 | } | 251 | } |
252 | } | 252 | } |
253 | |||
254 | public List<GridRegion> GetDefaultRegions(UUID scopeID) | ||
255 | { | ||
256 | return null; | ||
257 | } | ||
258 | |||
259 | public List<GridRegion> GetFallbackRegions(UUID scopeID, int x, int y) | ||
260 | { | ||
261 | return null; | ||
262 | } | ||
263 | |||
264 | public int GetRegionFlags(UUID scopeID, UUID regionID) | ||
265 | { | ||
266 | return 0; | ||
267 | } | ||
268 | |||
253 | } | 269 | } |
254 | } | 270 | } |