mirror of
https://github.com/opensim/opensim.git
synced 2026-08-10 11:33:28 +08:00
Guard against null root part on SQLite. This really needs to be fixed so SQLite
loads roots before children like MySQL does.
This commit is contained in:
@@ -4285,7 +4285,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||
|
||||
public void aggregateScriptEvents()
|
||||
{
|
||||
if (ParentGroup.RootPart == null)
|
||||
if (ParentGroup == null || ParentGroup.RootPart == null)
|
||||
return;
|
||||
|
||||
AggregateScriptEvents = 0;
|
||||
|
||||
Reference in New Issue
Block a user