【发布时间】:2021-09-04 21:49:29
【问题描述】:
我不能 100% 确定如何执行此操作或是否可行,但是否有用户可以执行的方法
#command issue here
并将问题发送给特定的渠道或管理员?
所以它基本上就像一种向机器人管理员报告问题的方式
提前感谢您的帮助和感谢
module.exports = {
name: "reportissue",
description: "Report an issue you are experiencing with the bot",
permissions: {
channel: ["VIEW_CHANNEL", "SEND_MESSAGES", "EMBED_LINKS"],
member: ["ADMINISTRATOR"],
},
aliases: ["report", "issue"],
run: async (client, message, args, { GuildDB }) => {
// I have removed this since its not the correct usage
// message.channel.send("issue");
};
}
}
【问题讨论】:
标签: discord discord.js