On reflection, HasGroupChanged is more appropriate

This commit is contained in:
Justin Clarke Casey
2008-01-18 18:57:28 +00:00
parent be50fa76ee
commit 8df4774830
3 changed files with 15 additions and 15 deletions

View File

@@ -184,7 +184,7 @@ namespace OpenSim.Region.Environment.Scenes
// persistence thread visits this object. In the future, changes can be signalled at a more
// granular level, or we could let the datastore worry about whether prims have really
// changed since they were last persisted.
HasPrimChanged = true;
HasGroupChanged = true;
return true;
}
@@ -241,7 +241,7 @@ namespace OpenSim.Region.Environment.Scenes
// persistence thread visits this object. In the future, changes can be signalled at a more
// granular level, or we could let the datastore worry about whether prims have really
// changed since they were last persisted.
HasPrimChanged = true;
HasGroupChanged = true;
return true;
}
@@ -268,7 +268,7 @@ namespace OpenSim.Region.Environment.Scenes
// persistence thread visits this object. In the future, changes can be signalled at a more
// granular level, or we could let the datastore worry about whether prims have really
// changed since they were last persisted.
HasPrimChanged = true;
HasGroupChanged = true;
return type;
}