diff options
author | Justin Clarke Casey | 2008-01-18 18:57:28 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-01-18 18:57:28 +0000 |
commit | 8df4774830f4f9f46070855db2699a047250edf0 (patch) | |
tree | 030dcc60e89dfdd506b91c84941341db7a000421 /OpenSim/Region/Environment/Scenes/SceneObjectGroup.Inventory.cs | |
parent | Change SOP.HasChanged to HasPrimChanged in preparation for further changes (diff) | |
download | opensim-SC_OLD-8df4774830f4f9f46070855db2699a047250edf0.zip opensim-SC_OLD-8df4774830f4f9f46070855db2699a047250edf0.tar.gz opensim-SC_OLD-8df4774830f4f9f46070855db2699a047250edf0.tar.bz2 opensim-SC_OLD-8df4774830f4f9f46070855db2699a047250edf0.tar.xz |
On reflection, HasGroupChanged is more appropriate
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/SceneObjectGroup.Inventory.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SceneObjectGroup.Inventory.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectGroup.Inventory.cs b/OpenSim/Region/Environment/Scenes/SceneObjectGroup.Inventory.cs index 8320c79..59ffded 100644 --- a/OpenSim/Region/Environment/Scenes/SceneObjectGroup.Inventory.cs +++ b/OpenSim/Region/Environment/Scenes/SceneObjectGroup.Inventory.cs | |||
@@ -184,7 +184,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
184 | // persistence thread visits this object. In the future, changes can be signalled at a more | 184 | // persistence thread visits this object. In the future, changes can be signalled at a more |
185 | // granular level, or we could let the datastore worry about whether prims have really | 185 | // granular level, or we could let the datastore worry about whether prims have really |
186 | // changed since they were last persisted. | 186 | // changed since they were last persisted. |
187 | HasPrimChanged = true; | 187 | HasGroupChanged = true; |
188 | 188 | ||
189 | return true; | 189 | return true; |
190 | } | 190 | } |
@@ -241,7 +241,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
241 | // persistence thread visits this object. In the future, changes can be signalled at a more | 241 | // persistence thread visits this object. In the future, changes can be signalled at a more |
242 | // granular level, or we could let the datastore worry about whether prims have really | 242 | // granular level, or we could let the datastore worry about whether prims have really |
243 | // changed since they were last persisted. | 243 | // changed since they were last persisted. |
244 | HasPrimChanged = true; | 244 | HasGroupChanged = true; |
245 | 245 | ||
246 | return true; | 246 | return true; |
247 | } | 247 | } |
@@ -268,7 +268,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
268 | // persistence thread visits this object. In the future, changes can be signalled at a more | 268 | // persistence thread visits this object. In the future, changes can be signalled at a more |
269 | // granular level, or we could let the datastore worry about whether prims have really | 269 | // granular level, or we could let the datastore worry about whether prims have really |
270 | // changed since they were last persisted. | 270 | // changed since they were last persisted. |
271 | HasPrimChanged = true; | 271 | HasGroupChanged = true; |
272 | 272 | ||
273 | return type; | 273 | return type; |
274 | } | 274 | } |