}
private AxisAlignedBB getAttachmentPointsHighlightBox(EntityPlayer player, TileEntity tileEntity,
MovingObjectPosition target) {
Attachments attachments = ((IHasAttachments)tileEntity).getAttachments();
Attachment attachment = attachments.get(target.subHit);
if (attachment == null) return null;
return attachment.getHighlightBox();
}