本文介紹了為什么別名沒有被執行?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
您好,我在 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模板網!
【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!