prepare messageCreate event

This commit is contained in:
Baipyrus 2024-04-05 13:51:58 +02:00
parent 272525ad9c
commit e2ef65203e
2 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,8 @@
import { Keywords, Responses, sequelize } from '../../database.js';
import { Events, Message } from 'discord.js';
import { Op } from 'sequelize';
export const name = Events.MessageCreate;
/** @param {Message} message */
export async function execute(message) {
}

View File

@ -19,6 +19,7 @@ const runClient = (commands, events) => {
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMembers,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.MessageContent,
GatewayIntentBits.GuildVoiceStates,
GatewayIntentBits.GuildMessageReactions
],