简体   繁体   English

如何使斜杠命令在 dms discord.js v14 中不可用

[英]How do I make a slash command not usable in dms discord.js v14

I am making a discord bot and I want all the slash commands to not be usable in a users direct messages, it can only be used in the server the bot is in. How do I do that?我正在制作一个 discord 机器人,我希望所有斜杠命令都不能在用户直接消息中使用,它只能在机器人所在的服务器上使用。我该怎么做?

Command Specific: Discord.js Guide命令特定: Discord.js 指南

Global: Add this to your interaction-create event before executing:全局:在执行之前将其添加到您的interaction-create事件中:

if (!interaction.guild) return await interaction.reply({ content: "Commands are only useable on Servers", ephemeral: true });

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM