CGyB / Discord-Google-Drive-Musicbot

Simple discord bot to play music and manage your server
MIT License
1 stars 0 forks source link

embed가 전송이 되지않습니다. #12

Open CGyB opened 2 years ago

CGyB commented 2 years ago

const Discord = require('discord.js');

module.exports = { name: 'test', description: 'test.', async execute(interaction) { embed = new Discord.MessageEmbed() .setColor('RANDOM') .setTitle('test') .setDescription('test \n test2 \n test3'); messageEmbed = await interaction.reply(embed); messageEmbed.react('👍'); }, };

다음과 같이 test에 작성되어있는데 보낼 메세지가 비어있다는 오류 메세지가 뜹니다.

CGyB commented 2 years ago

https://stackoverflow.com/questions/69539920/embed-message-discordapierror-cannot-send-an-empty-message-v-13-discord-js

디스코드 버전 13에서

message.channel.send({embeds: [aembed]}) 다음과 같은 형태로 쓰도록 업데이트 되었다고 합니다.