feat(discord-bot): suppress mention reply on success

This commit is contained in:
2025-12-05 17:29:04 +01:00
parent d82c6589c6
commit 66474dc813
3 changed files with 18 additions and 1 deletions

View File

@@ -47,5 +47,10 @@ export const iconeCommand: Command = async (message, args) => {
)
.setColor(65280),
],
options: {
allowedMentions: {
repliedUser: false,
},
},
});
};