Skip to content

Commit

Permalink
feat: enhanced ready log
Browse files Browse the repository at this point in the history
  • Loading branch information
mouse484 committed Oct 23, 2022
1 parent 7198e86 commit ed9c047
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/core/events/ready.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ import { Events } from 'discord.js';
export default event(() => ({
name: Events.ClientReady,
run({ client }) {
client.log.ready(client.user?.tag);
client.log.ready(
`account : \`${client.user?.tag}\``,
`| prefix : \`${client.options.prefix}\``
);
},
}));

0 comments on commit ed9c047

Please sign in to comment.