Did stuff

This commit is contained in:
Emily 2020-04-01 19:33:02 +11:00
parent 8b7eb29866
commit db57128ebf
16 changed files with 726 additions and 78 deletions

View file

@ -4,7 +4,7 @@ exports.conf = {
aliases: [],
permLevel: 'User',
requiredPerms: [],
cooldown: 5000
cooldown: 2000
}
exports.help = {
@ -17,6 +17,6 @@ exports.help = {
exports.run = async (client, message) => {
const msg = await message.channel.send('Pinging...')
msg.edit(
`Pong! \`${msg.createdTimestamp - message.createdTimestamp}ms\` (💗\`${Math.round(client.ws.ping)}ms\`)`
`Pong! \`${msg.createdTimestamp - message.createdTimestamp}ms\` (💗 \`${Math.round(client.ws.ping)}ms\`)`
)
}