types a bit

This commit is contained in:
Ryan Cao 2022-06-08 22:52:42 +08:00
parent c33398474e
commit d394096de3
No known key found for this signature in database
GPG key ID: 528A2C1B6656B97F
7 changed files with 8 additions and 8 deletions

View file

@ -5,6 +5,6 @@ export const cmd: Command = {
desc: 'Shows the ping of the bot',
aliases: ['test'],
exec: async (e) => {
return await e.reply(`${e.client.ws.ping}ms`);
await e.reply(`${e.client.ws.ping}ms`);
},
};