Comment out unimplemented and uncalled RegionCombinerModule.UnCombineRegion()
parent
0337f2e2a0
commit
0a6374d37a
|
@ -841,33 +841,33 @@ namespace OpenSim.Region.RegionCombinerModule
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
// /// <summary>
|
||||||
/// TODO:
|
// /// TODO:
|
||||||
/// </summary>
|
// /// </summary>
|
||||||
/// <param name="rdata"></param>
|
// /// <param name="rdata"></param>
|
||||||
public void UnCombineRegion(RegionData rdata)
|
// public void UnCombineRegion(RegionData rdata)
|
||||||
{
|
// {
|
||||||
lock (m_regions)
|
// lock (m_regions)
|
||||||
{
|
// {
|
||||||
if (m_regions.ContainsKey(rdata.RegionId))
|
// if (m_regions.ContainsKey(rdata.RegionId))
|
||||||
{
|
// {
|
||||||
// uncombine root region and virtual regions
|
// // uncombine root region and virtual regions
|
||||||
}
|
// }
|
||||||
else
|
// else
|
||||||
{
|
// {
|
||||||
foreach (RegionConnections r in m_regions.Values)
|
// foreach (RegionConnections r in m_regions.Values)
|
||||||
{
|
// {
|
||||||
foreach (RegionData rd in r.ConnectedRegions)
|
// foreach (RegionData rd in r.ConnectedRegions)
|
||||||
{
|
// {
|
||||||
if (rd.RegionId == rdata.RegionId)
|
// if (rd.RegionId == rdata.RegionId)
|
||||||
{
|
// {
|
||||||
// uncombine virtual region
|
// // uncombine virtual region
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
|
|
||||||
// Create a set of infinite borders around the whole aabb of the combined island.
|
// Create a set of infinite borders around the whole aabb of the combined island.
|
||||||
private void AdjustLargeRegionBounds()
|
private void AdjustLargeRegionBounds()
|
||||||
|
|
Loading…
Reference in New Issue