//loca pic
const locapic = interaction.options.getAttachment("location")
if (locapic) {
if (locapic.contentType.includes("image")) {
embed.setImage(locapic.url)
} else {
return await interaction.reply({
content: `❌ Invalid File Type: IMAGE ONLY`,
ephemeral: true
});
}
}
기존 방식: 첨부 이미지 있을 경우 embed에 첨부
변경: 링크 입력 시 해당 링크로 링크 사용, 없으면 채널 기본 링크 사용으로 외부 지도 사이트로 이동
사진 첨부 시에는 deferReply 사용할 것