aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
authorMelanie Thielker2010-09-01 20:10:44 +0200
committerMelanie Thielker2010-09-01 20:10:44 +0200
commit09fba1609493b5ad60ab95fb6db4b368a1833fc3 (patch)
tree231bd4678dbad475e1d746a723be04aaab8ba480 /OpenSim/Region
parentImprove sim health reporting. Output error message if heartbeat thread is res... (diff)
downloadopensim-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/Region')
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs2
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)