mirror of
https://github.com/nx-bat/pet-the-pond.git
synced 2026-09-22 10:29:11 -04:00
prettier
This commit is contained in:
+4
-4
@@ -13,7 +13,7 @@ const client: CommandClient = new CommandClient({
|
||||
intents: [
|
||||
Constants.GatewayIntentBits.Guilds,
|
||||
Constants.GatewayIntentBits.GuildMessages,
|
||||
Constants.GatewayIntentBits.GuildMessageReactions
|
||||
Constants.GatewayIntentBits.GuildMessageReactions,
|
||||
],
|
||||
|
||||
largeBotOptimizations: true,
|
||||
@@ -22,13 +22,13 @@ const client: CommandClient = new CommandClient({
|
||||
users: () => new NullCollection(User),
|
||||
members: () => new NullCollection(Member),
|
||||
messages: () => new NullCollection(Message),
|
||||
guilds: () => new NullCollection(Guild)
|
||||
guilds: () => new NullCollection(Guild),
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
commands.forEach(command => client.registerCommand(command, true));
|
||||
events.forEach(event => client.registerEvent(event, true));
|
||||
commands.forEach((command) => client.registerCommand(command, true));
|
||||
events.forEach((event) => client.registerEvent(event, true));
|
||||
|
||||
// ----------
|
||||
|
||||
|
||||
Reference in New Issue
Block a user