fix: disallowed mention

This commit is contained in:
Siwoo Jeon 2024-06-27 00:26:00 +09:00
parent e639048a3f
commit f13b6b3e42
Signed by: migan
GPG key ID: C4151385FFD2082A
2 changed files with 6 additions and 1 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "muffinbot", "name": "muffinbot",
"version": "2.0.0-oreo.r240618a", "version": "2.0.0-oreo.r240617a",
"main": "dist/index.js", "main": "dist/index.js",
"private": true, "private": true,
"dependencies": { "dependencies": {

View file

@ -29,6 +29,11 @@ export default class MuffinBot extends Client {
GatewayIntentBits.GuildMessages, GatewayIntentBits.GuildMessages,
GatewayIntentBits.MessageContent, GatewayIntentBits.MessageContent,
], ],
allowedMentions: {
users: [],
roles: [],
repliedUser: true,
},
}) })
} }