add HasChanged to ITerrainModule
parent
c3e806a2ea
commit
3bcee57e3e
|
@ -93,12 +93,9 @@ namespace OpenSim.Region.CoreModules.World.Terrain
|
|||
get { return m_commander; }
|
||||
}
|
||||
|
||||
public bool HasChanged
|
||||
public bool HasChanged()
|
||||
{
|
||||
get
|
||||
{
|
||||
return m_tainted;
|
||||
}
|
||||
return m_tainted;
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
|
|
@ -42,7 +42,8 @@ namespace OpenSim.Region.Framework.Interfaces
|
|||
/// Use this if you change terrain data outside of the terrain module (e.g. in osTerrainSetHeight)
|
||||
/// </summary>
|
||||
void TaintTerrain();
|
||||
|
||||
|
||||
bool HasChanged();
|
||||
/// <summary>
|
||||
/// Load a terrain from a stream.
|
||||
/// </summary>
|
||||
|
|
Loading…
Reference in New Issue