aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/SceneGraph.cs
diff options
context:
space:
mode:
authorUbitUmarov2018-12-29 19:04:39 +0000
committerUbitUmarov2018-12-29 19:04:39 +0000
commitb1563788198dae9e10531802a55e7a6e6dbc39ed (patch)
tree0f54738c0cfbdf58e5988cf626516c6cfadba1c5 /OpenSim/Region/Framework/Scenes/SceneGraph.cs
parentchanges on updates (diff)
downloadopensim-SC-b1563788198dae9e10531802a55e7a6e6dbc39ed.zip
opensim-SC-b1563788198dae9e10531802a55e7a6e6dbc39ed.tar.gz
opensim-SC-b1563788198dae9e10531802a55e7a6e6dbc39ed.tar.bz2
opensim-SC-b1563788198dae9e10531802a55e7a6e6dbc39ed.tar.xz
changes on updates
Diffstat (limited to '')
-rwxr-xr-xOpenSim/Region/Framework/Scenes/SceneGraph.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneGraph.cs b/OpenSim/Region/Framework/Scenes/SceneGraph.cs
index 68864cc..6ba9d7a 100755
--- a/OpenSim/Region/Framework/Scenes/SceneGraph.cs
+++ b/OpenSim/Region/Framework/Scenes/SceneGraph.cs
@@ -626,6 +626,8 @@ namespace OpenSim.Region.Framework.Scenes
626 for (int i = 0; i < updates.Count; i++) 626 for (int i = 0; i < updates.Count; i++)
627 { 627 {
628 SceneObjectGroup sog = updates[i]; 628 SceneObjectGroup sog = updates[i];
629 if (sog.IsDeleted)
630 continue;
629 631
630 // Don't abort the whole update if one entity happens to give us an exception. 632 // Don't abort the whole update if one entity happens to give us an exception.
631 try 633 try