diff options
author | Melanie Thielker | 2010-09-01 20:10:44 +0200 |
---|---|---|
committer | Melanie Thielker | 2010-09-01 20:10:44 +0200 |
commit | 09fba1609493b5ad60ab95fb6db4b368a1833fc3 (patch) | |
tree | 231bd4678dbad475e1d746a723be04aaab8ba480 /OpenSim | |
parent | Improve sim health reporting. Output error message if heartbeat thread is res... (diff) | |
download | opensim-SC_OLD-09fba1609493b5ad60ab95fb6db4b368a1833fc3.zip opensim-SC_OLD-09fba1609493b5ad60ab95fb6db4b368a1833fc3.tar.gz opensim-SC_OLD-09fba1609493b5ad60ab95fb6db4b368a1833fc3.tar.bz2 opensim-SC_OLD-09fba1609493b5ad60ab95fb6db4b368a1833fc3.tar.xz |
Prevent Meta7 plants from being treated like dropped attachments and removed
from the sim.
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index a9e6647..400f4c0 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -5068,7 +5068,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
5068 | { | 5068 | { |
5069 | ForEachSOG(delegate (SceneObjectGroup grp) | 5069 | ForEachSOG(delegate (SceneObjectGroup grp) |
5070 | { | 5070 | { |
5071 | if (grp.RootPart.Shape.State != 0 && (!objectsToDelete.Contains(grp))) | 5071 | if (grp.RootPart.Shape.PCode == 0 && grp.RootPart.Shape.State != 0 && (!objectsToDelete.Contains(grp))) |
5072 | { | 5072 | { |
5073 | UUID agentID = grp.OwnerID; | 5073 | UUID agentID = grp.OwnerID; |
5074 | if (agentID == UUID.Zero) | 5074 | if (agentID == UUID.Zero) |