aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Region/Framework/Scenes/ScenePresence.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
index cd9dcf5..dff582b 100644
--- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs
+++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
@@ -1855,7 +1855,12 @@ namespace OpenSim.Region.Framework.Scenes
1855 // Util.FireAndForget( 1855 // Util.FireAndForget(
1856 // o => 1856 // o =>
1857 // { 1857 // {
1858 Scene.AttachmentsModule.RezAttachments(this); 1858 if (!isNPC)
1859 Scene.AttachmentsModule.RezAttachments(this);
1860 else
1861 Util.FireAndForget(x => {
1862 Scene.AttachmentsModule.RezAttachments(this);
1863 });
1859 // }); 1864 // });
1860 } 1865 }
1861 else 1866 else