remove unused parameter

This commit is contained in:
UbitUmarov
2015-11-17 07:59:11 +00:00
parent cd29abf1ac
commit f7f5aba597
5 changed files with 10 additions and 9 deletions

View File

@@ -3719,7 +3719,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
IAttachmentsModule attachmentsModule = m_ScriptEngine.World.AttachmentsModule;
if (attachmentsModule != null)
return attachmentsModule.AttachObject(presence, grp, (uint)attachmentPoint, false, true, false, true);
return attachmentsModule.AttachObject(presence, grp, (uint)attachmentPoint, false, true, true);
else
return false;
}