feat(discord-bot): suppress mention reply on success
This commit is contained in:
@@ -1,5 +1,12 @@
|
||||
import type { Command } from "~/commands";
|
||||
|
||||
export const pingCommand: Command = async (message, args) => {
|
||||
await message.reply("pong");
|
||||
await message.reply({
|
||||
content: "🫵 Pong",
|
||||
options: {
|
||||
allowedMentions: {
|
||||
repliedUser: false,
|
||||
},
|
||||
},
|
||||
});
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user