diff options
Diffstat (limited to 'src/listeners/client')
-rw-r--r-- | src/listeners/client/interactionCreate.ts | 2 | ||||
-rw-r--r-- | src/listeners/client/ready.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/listeners/client/interactionCreate.ts b/src/listeners/client/interactionCreate.ts index d2bc6b5..e755ad6 100644 --- a/src/listeners/client/interactionCreate.ts +++ b/src/listeners/client/interactionCreate.ts @@ -14,7 +14,7 @@ export default class InteractionCreateListener extends BushListener { if (!interaction) return; if (interaction.isCommand()) { void client.console.info( - 'SlashCommand', + 'slashCommand', `The <<${interaction.commandName}>> command was used by <<${interaction.user.tag}>> in <<${ interaction.channel ? interaction.channel.type == 'DM' diff --git a/src/listeners/client/ready.ts b/src/listeners/client/ready.ts index 5806f7f..cf616ce 100644 --- a/src/listeners/client/ready.ts +++ b/src/listeners/client/ready.ts @@ -15,7 +15,7 @@ export default class ReadyListener extends BushListener { guildCount = `<<${client.guilds.cache.size.toLocaleString()}>>`, userCount = `<<${client.users.cache.size.toLocaleString()}>>`; - void client.logger.success('Ready', `Logged in to ${tag} serving ${guildCount} guilds and ${userCount} users.`); + void client.logger.success('ready', `Logged in to ${tag} serving ${guildCount} guilds and ${userCount} users.`); console.log( chalk.blue( `------------------------------------------------------------------------------${ |