fix: quotes not working #60
1 changed files with 5 additions and 1 deletions
|
@ -7,7 +7,11 @@ import { Database } from "sqlite3";
|
|||
/** Creation of the client and definition of its properties. */
|
||||
export default async () => {
|
||||
const client: Client = new Client({
|
||||
intents: [GatewayIntentBits.Guilds, GatewayIntentBits.GuildMessages],
|
||||
intents: [
|
||||
GatewayIntentBits.Guilds,
|
||||
GatewayIntentBits.GuildMessages,
|
||||
GatewayIntentBits.MessageContent,
|
||||
],
|
||||
});
|
||||
|
||||
client.config = {
|
||||
|
|
Loading…
Reference in a new issue