首页 > 解决方案 > Discord bot 不会回复带有“KlH04s69”这样的内容的命令

问题描述

这对我来说不是什么大问题,我只是好奇为什么机器人会毫无问题地回复这个命令

else if (command === "give me cookies") {
    const attachment = new Discord.MessageAttachment('./laisaembarasment.png');
    message.reply(`NOPE`);
    message.channel.send(attachment);
}

然而机器人不回复这个

else if (command === "KlH04s69") {
    const attachment = new Discord.MessageAttachment('./hornyticket.png');
    message.reply(`just used his ticket! Oh no, it's a horny one...`);
    message.channel.send(attachment);
}

标签: node.jsdiscord

解决方案


我无法回复它,因为命令输入中的所有内容都必须是小写的,因此

const command = args.shift().toLowerCase();


推荐阅读