Attempt to prevent attached prims from being persisted. Attachments with
invisiprim refresh scripts get sent to the database and remain there when the agent logs out. This tries to prevent that.0.6.0-stable
parent
d5b3a66f52
commit
c9fbc03a18
|
@ -1139,7 +1139,7 @@ namespace OpenSim.Region.Environment.Scenes
|
|||
if (HasGroupChanged)
|
||||
{
|
||||
// don't backup while it's selected or you're asking for changes mid stream.
|
||||
if ((!IsSelected) && (RootPart != null))
|
||||
if ((!IsSelected) && (RootPart != null) && (!m_rootPart.IsAttachment))
|
||||
{
|
||||
m_log.DebugFormat(
|
||||
"[SCENE]: Storing {0}, {1} in {2}",
|
||||
|
|
Loading…
Reference in New Issue