Remove recent IRegionCombinerModule.IsMegaregion(). In theory, there can be more than one megaregion in a simulator, separated by water.

Rename IsRootRegion() to IsRootForMegaregion()
This commit is contained in:
Justin Clark-Casey (justincc)
2012-05-19 03:17:21 +01:00
parent 26dfcf5395
commit 3f2a727b6d
3 changed files with 5 additions and 20 deletions

View File

@@ -38,14 +38,8 @@ namespace OpenSim.Region.Framework.Interfaces
public interface IRegionCombinerModule
{
/// <summary>
/// Is this simulator hosting a megaregion?
/// Does the given id belong to the root region of a megaregion?
/// </summary>
/// <value></value>
bool IsMegaregion { get; }
/// <summary>
/// Does the given id belong to the root region of the megaregion?
/// </summary>
bool IsRootRegion(UUID sceneId);
bool IsRootForMegaregion(UUID sceneId);
}
}