aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Scene.cs
diff options
context:
space:
mode:
authorMelanie2013-03-29 02:42:47 +0000
committerMelanie2013-03-29 02:42:47 +0000
commitf2f824817814d9eeaddf29be2732f25fa708e05b (patch)
tree37a7e54d2873ebbb92c0a907383bbfcd52c542b5 /OpenSim/Region/Framework/Scenes/Scene.cs
parentMerge commit 'e89bcf4f773d95492b168376599f7530a6044e8f' into careminster (diff)
parentFix bug where CHANGED_REGION and/or CHANGED_TELEPORT weren't firing for scrip... (diff)
downloadopensim-SC_OLD-f2f824817814d9eeaddf29be2732f25fa708e05b.zip
opensim-SC_OLD-f2f824817814d9eeaddf29be2732f25fa708e05b.tar.gz
opensim-SC_OLD-f2f824817814d9eeaddf29be2732f25fa708e05b.tar.bz2
opensim-SC_OLD-f2f824817814d9eeaddf29be2732f25fa708e05b.tar.xz
Merge commit '23ae4c0a4d813763bcc39db7693850a21727d7f2' into careminster
Conflicts: OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index 94ead98..28fce53 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -2861,7 +2861,10 @@ namespace OpenSim.Region.Framework.Scenes
2861// "[ATTACHMENT]: Attach to avatar {0} at position {1}", sp.UUID, grp.AbsolutePosition); 2861// "[ATTACHMENT]: Attach to avatar {0} at position {1}", sp.UUID, grp.AbsolutePosition);
2862 2862
2863 RootPrim.RemFlag(PrimFlags.TemporaryOnRez); 2863 RootPrim.RemFlag(PrimFlags.TemporaryOnRez);
2864 2864
2865 // We must currently not resume scripts at this stage since AttachmentsModule does not have the
2866 // information that this is due to a teleport/border cross rather than an ordinary attachment.
2867 // We currently do this in Scene.MakeRootAgent() instead.
2865 if (AttachmentsModule != null) 2868 if (AttachmentsModule != null)
2866 AttachmentsModule.AttachObject(sp, grp, 0, false, false, false, true); 2869 AttachmentsModule.AttachObject(sp, grp, 0, false, false, false, true);
2867 } 2870 }