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

@@ -184,7 +184,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Attachments
hostPart.ParentGroup.RootPart.ScheduleFullUpdate();
}
return attachmentsModule.AttachObject(target, hostPart.ParentGroup, (uint)attachmentPoint, false, false, false, true) ? 1 : 0;
return attachmentsModule.AttachObject(target, hostPart.ParentGroup, (uint)attachmentPoint, false, false, true) ? 1 : 0;
}
}
}