Reputation: 1
so, i have learn how to make a discord bot from a youtube channel which called "CodeLyon" and there is the error:enter image description here
do someone know how to fix it? (I searched a long time for solving this problem and i didnt find anything)
Upvotes: 0
Views: 139
Reputation: 6625
If you are using Discord JS V12 it's:
const discord = require("discord.js");
const Embed = new discord.MessageEmbed();;
Otherwise, it is:
const discord = require("discord.js");
const Embed = new discord.RichEmbed();;
Upvotes: 2