Make attachment rezzing async again for NPC. Doing that sync causes a deadlock
with the script thread.avinationmerge
parent
65c0c4be78
commit
752901c5f4
|
@ -1855,7 +1855,12 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
// Util.FireAndForget(
|
// Util.FireAndForget(
|
||||||
// o =>
|
// o =>
|
||||||
// {
|
// {
|
||||||
Scene.AttachmentsModule.RezAttachments(this);
|
if (!isNPC)
|
||||||
|
Scene.AttachmentsModule.RezAttachments(this);
|
||||||
|
else
|
||||||
|
Util.FireAndForget(x => {
|
||||||
|
Scene.AttachmentsModule.RezAttachments(this);
|
||||||
|
});
|
||||||
// });
|
// });
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue