put back lost parentgroud null check, it is still needed on load code

This commit is contained in:
UbitUmarov
2025-10-05 20:53:49 +01:00
parent 7249b20796
commit 13ec0b9221

View File

@@ -664,7 +664,8 @@ namespace OpenSim.Region.Framework.Scenes
if(m_passTouches != value)
{
m_passTouches = value;
ParentGroup.HasGroupChanged = true;
if(ParentGroup != null)
ParentGroup.HasGroupChanged = true;
}
}
}
@@ -678,7 +679,8 @@ namespace OpenSim.Region.Framework.Scenes
if(m_passCollisions != value)
{
m_passCollisions = value;
ParentGroup.HasGroupChanged = true;
if(ParentGroup != null)
ParentGroup.HasGroupChanged = true;
}
}
}