why are aliases not getting executed?(为什么别名没有被执行?)
问题描述
您好,我在 discord.js 中遇到了别名问题,别名不起作用,我不知道为什么?
Hello, I'm having an issue with aliases in discord.js the aliases don't work, I don't know why?
client.on('message', message =>{
// Exit when the message from the bot
if (!message.content.startsWith(prefix) || message.author.bot) return;
const args = message.content.slice(prefix.length).trim().split(/ +/);
const commandName = args.shift().toLowerCase();
if (!client.commands.has(commandName)) return;
const command = client.commands.get(commandName) || client.commands.find(cmd => cmd.aliases && cmd.aliases.includes(commandName));
try {
command.execute(message, args, commandName, client, Discord);
} catch (error) {
console.error(error);
message.reply('there was an error trying to execute that command!');
}
});
推荐答案
不能使用别名,因为你放了
You can’t use aliases because you put
if(!client.commands.has(commandName)) return;
如果您尝试使用别名或其他任何不在您的 client.commands
键中的东西,这将返回 false.删除此行并改用此行:
This returns false if you try an alias, or anything else that isn’t in your client.commands
keys. Remove this line and use this instead:
const args = message.content.slice(prefix.length).trim().split(/ +/);
const commandName = args.shift().toLowerCase();
const command = client.commands.get(commandName) || client.commands.find(cmd => cmd.aliases?.includes(commandName));
if(!command) return;
//...
这会查找命令首先,然后如果没有找到命令、名称或别名,则返回
This looks for the command first and then if no command is found, name or alias, it returns
这篇关于为什么别名没有被执行?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么别名没有被执行?


基础教程推荐
- 检查 HTML5 拖放文件类型 2022-01-01
- Fabric JS绘制具有活动形状的多边形 2022-01-01
- Bokeh Div文本对齐 2022-01-01
- 在 contenteditable 中精确拖放 2022-01-01
- 原生拖动事件后如何获取 mouseup 事件? 2022-01-01
- 即使用户允许,Gmail 也会隐藏外部电子邮件图片 2022-01-01
- npm start 错误与 create-react-app 2022-01-01
- fetch 是否支持原生多文件上传? 2022-01-01
- 如何添加到目前为止的天数? 2022-01-01
- Bootstrap 模态出现在背景下 2022-01-01