diff options
author | Melanie Thielker | 2010-06-07 00:09:22 +0200 |
---|---|---|
committer | Melanie | 2010-06-07 00:11:30 +0100 |
commit | d91bd7646dc25e5e2ec20aaad596a168e0804436 (patch) | |
tree | 1a24a103a9fde9d963f29620f7e0b3c57d56797a /OpenSim/Region/Framework/Scenes | |
parent | * Bug fix in TP home: typo in unpacking of GridUserInfo. (diff) | |
download | opensim-SC_OLD-d91bd7646dc25e5e2ec20aaad596a168e0804436.zip opensim-SC_OLD-d91bd7646dc25e5e2ec20aaad596a168e0804436.tar.gz opensim-SC_OLD-d91bd7646dc25e5e2ec20aaad596a168e0804436.tar.bz2 opensim-SC_OLD-d91bd7646dc25e5e2ec20aaad596a168e0804436.tar.xz |
Add a call to SOG.ResumeScripts() after region crossing / teleport
Diffstat (limited to 'OpenSim/Region/Framework/Scenes')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 3948f14..2544359 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -2467,6 +2467,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
2467 | 2467 | ||
2468 | newObject.RootPart.ParentGroup.CreateScriptInstances(0, false, DefaultScriptEngine, 1); | 2468 | newObject.RootPart.ParentGroup.CreateScriptInstances(0, false, DefaultScriptEngine, 1); |
2469 | 2469 | ||
2470 | newObject.ResumeScripts(); | ||
2471 | |||
2470 | // Do this as late as possible so that listeners have full access to the incoming object | 2472 | // Do this as late as possible so that listeners have full access to the incoming object |
2471 | EventManager.TriggerOnIncomingSceneObject(newObject); | 2473 | EventManager.TriggerOnIncomingSceneObject(newObject); |
2472 | 2474 | ||