Discord.js v12 如何让命令只在某个服务器有效?

Discord.js v12 How to make commands only work in a certain server?

我试图让一些“命令”只对特定的服务器有效,所以当在不同的服务器上使用时,它会说类似 This command can only be used in [GUILD] server. 让我知道是否有人有任何解决方案。谢谢!

在执行命令的功能之前,您可以检查一下:

if (message.guild.id !== 'TheIdOfYourGuild') return message.reply('This command can only be used in another server.');