aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
authorMelanie2011-05-26 16:29:00 +0200
committerMelanie2011-05-26 16:29:00 +0200
commit4d324f1b74deb1bc08b02ad1fe781d46cff43ccc (patch)
treeeb86b4c4d216895ac435cf586c059e119b21e87c /OpenSim/Region
parentAdd PayPrice to serialization format Xml2 (diff)
downloadopensim-SC_OLD-4d324f1b74deb1bc08b02ad1fe781d46cff43ccc.zip
opensim-SC_OLD-4d324f1b74deb1bc08b02ad1fe781d46cff43ccc.tar.gz
opensim-SC_OLD-4d324f1b74deb1bc08b02ad1fe781d46cff43ccc.tar.bz2
opensim-SC_OLD-4d324f1b74deb1bc08b02ad1fe781d46cff43ccc.tar.xz
Change setter on changed flags to public so modules can reset it
Diffstat (limited to 'OpenSim/Region')
-rw-r--r--OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs
index 62277ff..d3d5d08 100644
--- a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs
+++ b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs
@@ -183,7 +183,7 @@ namespace OpenSim.Region.Framework.Scenes
183 /// Has the group changed due to an unlink operation? We record this in order to optimize deletion, since 183 /// Has the group changed due to an unlink operation? We record this in order to optimize deletion, since
184 /// an unlinked group currently has to be persisted to the database before we can perform an unlink operation. 184 /// an unlinked group currently has to be persisted to the database before we can perform an unlink operation.
185 /// </summary> 185 /// </summary>
186 public bool HasGroupChangedDueToDelink { get; private set; } 186 public bool HasGroupChangedDueToDelink { get; set; }
187 187
188 private bool isTimeToPersist() 188 private bool isTimeToPersist()
189 { 189 {