rez npcs attachments async again
parent
190e2da672
commit
7110e98815
|
@ -2259,7 +2259,17 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
if (IsNPC || IsRealLogin(m_teleportFlags))
|
||||
{
|
||||
if (Scene.AttachmentsModule != null)
|
||||
Scene.AttachmentsModule.RezAttachments(this);
|
||||
{
|
||||
if(IsNPC)
|
||||
{
|
||||
Util.FireAndForget(x =>
|
||||
{
|
||||
Scene.AttachmentsModule.RezAttachments(this);
|
||||
});
|
||||
}
|
||||
else
|
||||
Scene.AttachmentsModule.RezAttachments(this);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue