diff options
author | Justin Clark-Casey (justincc) | 2010-08-06 18:28:53 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-08-06 18:29:30 +0100 |
commit | 1270727c969db07831866947b611d49873031739 (patch) | |
tree | 8fd490eaf5c49d69be948fd9e58c0be1f7e38331 /OpenSim/Region/Framework/Scenes/Scene.cs | |
parent | Change XEngine to use the new constant (diff) | |
parent | fix mysql/mssql prim serialization problem (diff) | |
download | opensim-SC_OLD-1270727c969db07831866947b611d49873031739.zip opensim-SC_OLD-1270727c969db07831866947b611d49873031739.tar.gz opensim-SC_OLD-1270727c969db07831866947b611d49873031739.tar.bz2 opensim-SC_OLD-1270727c969db07831866947b611d49873031739.tar.xz |
Merge branch 'moap'
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 93f684c..dcd7f3d 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -1887,9 +1887,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
1887 | 1887 | ||
1888 | foreach (SceneObjectGroup group in PrimsFromDB) | 1888 | foreach (SceneObjectGroup group in PrimsFromDB) |
1889 | { | 1889 | { |
1890 | EventManager.TriggerOnSceneObjectLoaded(group); | ||
1891 | |||
1890 | if (group.RootPart == null) | 1892 | if (group.RootPart == null) |
1891 | { | 1893 | { |
1892 | m_log.ErrorFormat("[SCENE] Found a SceneObjectGroup with m_rootPart == null and {0} children", | 1894 | m_log.ErrorFormat("[SCENE]: Found a SceneObjectGroup with m_rootPart == null and {0} children", |
1893 | group.Children == null ? 0 : group.Children.Count); | 1895 | group.Children == null ? 0 : group.Children.Count); |
1894 | } | 1896 | } |
1895 | 1897 | ||