diff options
author | Justin Clark-Casey (justincc) | 2012-05-19 03:17:21 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-05-19 03:17:21 +0100 |
commit | 3f2a727b6d6b0cf6c2e2c7ef11ebd0f3f1fefa83 (patch) | |
tree | 93da9fb560913a6d9d7a0288293d607d68461fff /OpenSim/Region/Framework | |
parent | Add some method doc to RegionCombinerModule. Clean up log messages. (diff) | |
download | opensim-SC_OLD-3f2a727b6d6b0cf6c2e2c7ef11ebd0f3f1fefa83.zip opensim-SC_OLD-3f2a727b6d6b0cf6c2e2c7ef11ebd0f3f1fefa83.tar.gz opensim-SC_OLD-3f2a727b6d6b0cf6c2e2c7ef11ebd0f3f1fefa83.tar.bz2 opensim-SC_OLD-3f2a727b6d6b0cf6c2e2c7ef11ebd0f3f1fefa83.tar.xz |
Remove recent IRegionCombinerModule.IsMegaregion(). In theory, there can be more than one megaregion in a simulator, separated by water.
Rename IsRootRegion() to IsRootForMegaregion()
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IRegionCombinerModule.cs | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IRegionCombinerModule.cs b/OpenSim/Region/Framework/Interfaces/IRegionCombinerModule.cs index 30e49b1..ca4ed5c 100644 --- a/OpenSim/Region/Framework/Interfaces/IRegionCombinerModule.cs +++ b/OpenSim/Region/Framework/Interfaces/IRegionCombinerModule.cs | |||
@@ -38,14 +38,8 @@ namespace OpenSim.Region.Framework.Interfaces | |||
38 | public interface IRegionCombinerModule | 38 | public interface IRegionCombinerModule |
39 | { | 39 | { |
40 | /// <summary> | 40 | /// <summary> |
41 | /// Is this simulator hosting a megaregion? | 41 | /// Does the given id belong to the root region of a megaregion? |
42 | /// </summary> | 42 | /// </summary> |
43 | /// <value></value> | 43 | bool IsRootForMegaregion(UUID sceneId); |
44 | bool IsMegaregion { get; } | ||
45 | |||
46 | /// <summary> | ||
47 | /// Does the given id belong to the root region of the megaregion? | ||
48 | /// </summary> | ||
49 | bool IsRootRegion(UUID sceneId); | ||
50 | } | 44 | } |
51 | } \ No newline at end of file | 45 | } \ No newline at end of file |