diff options
author | Melanie | 2013-03-29 23:28:47 +0000 |
---|---|---|
committer | Melanie | 2013-03-29 23:28:47 +0000 |
commit | d5d6a274a7ab9781585cb0a239a3c5f5d3cb6007 (patch) | |
tree | 71a5d8cb9168ee3946cbce3afb5354eb7cfa407d /OpenSim/Region/Framework/Scenes | |
parent | Merge commit '23ae4c0a4d813763bcc39db7693850a21727d7f2' into careminster (diff) | |
parent | Added missing functionality (mainly custom headers) to llHTTPRequest. (diff) | |
download | opensim-SC-d5d6a274a7ab9781585cb0a239a3c5f5d3cb6007.zip opensim-SC-d5d6a274a7ab9781585cb0a239a3c5f5d3cb6007.tar.gz opensim-SC-d5d6a274a7ab9781585cb0a239a3c5f5d3cb6007.tar.bz2 opensim-SC-d5d6a274a7ab9781585cb0a239a3c5f5d3cb6007.tar.xz |
Merge branch 'master' into careminster
Conflicts:
OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs
OpenSim/Region/CoreModules/Scripting/HttpRequest/ScriptsHttpRequests.cs
OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
Diffstat (limited to 'OpenSim/Region/Framework/Scenes')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/ScenePresence.cs | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs index f01a916..0ab267a 100644 --- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs | |||
@@ -1100,15 +1100,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
1100 | { | 1100 | { |
1101 | // Viewers which have a current outfit folder will actually rez their own attachments. However, | 1101 | // Viewers which have a current outfit folder will actually rez their own attachments. However, |
1102 | // viewers without (e.g. v1 viewers) will not, so we still need to make this call. | 1102 | // viewers without (e.g. v1 viewers) will not, so we still need to make this call. |
1103 | // | ||
1104 | // However, we leave a 5 second pause to try and avoid a clash with viewers that are rezzing | ||
1105 | // attachments themselves. This should then mean that this call ends up doing nothing. | ||
1106 | if (Scene.AttachmentsModule != null) | 1103 | if (Scene.AttachmentsModule != null) |
1107 | Util.FireAndForget( | 1104 | Util.FireAndForget( |
1108 | o => | 1105 | o => |
1109 | { | 1106 | { |
1110 | if (PresenceType != PresenceType.Npc && Util.FireAndForgetMethod != FireAndForgetMethod.None) | 1107 | // if (PresenceType != PresenceType.Npc && Util.FireAndForgetMethod != FireAndForgetMethod.None) |
1111 | System.Threading.Thread.Sleep(5000); | 1108 | // System.Threading.Thread.Sleep(7000); |
1112 | 1109 | ||
1113 | Scene.AttachmentsModule.RezAttachments(this); | 1110 | Scene.AttachmentsModule.RezAttachments(this); |
1114 | }); | 1111 | }); |