如何阻止 DM 中的命令?
How to block the commands in DMs?
我意识到,在我的机器人上,命令可以在直接消息中执行。
我想知道如何在此类频道中阻止他们。
您可以检查频道是否为 DMChannel:
if (message.channel instanceof Discord.DMChannel) //do not execute
else //execute
话虽如此:我看到您是 Whosebug 的新手,但请记住,您应该始终尝试解释您尝试做的事情。
您可以尝试将其用作命令的第一部分:
if (message.channel.type == "dm") return;
我意识到,在我的机器人上,命令可以在直接消息中执行。
我想知道如何在此类频道中阻止他们。
您可以检查频道是否为 DMChannel:
if (message.channel instanceof Discord.DMChannel) //do not execute
else //execute
话虽如此:我看到您是 Whosebug 的新手,但请记住,您应该始终尝试解释您尝试做的事情。
您可以尝试将其用作命令的第一部分:
if (message.channel.type == "dm") return;