mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 21:24:59 +05:00
32 lines
618 B
JavaScript
32 lines
618 B
JavaScript
|
const Command = require("../../base/Command.js");
|
||
|
|
||
|
class Ping extends Command {
|
||
|
constructor(client) {
|
||
|
super(client, {
|
||
|
name: "ping",
|
||
|
dirname: __dirname,
|
||
|
enabled: true,
|
||
|
guildOnly: false,
|
||
|
aliases: ["pong", "latency"],
|
||
|
memberPermissions: [],
|
||
|
botPermissions: ["SEND_MESSAGES"],
|
||
|
nsfw: false,
|
||
|
ownerOnly: false,
|
||
|
cooldown: 2000
|
||
|
});
|
||
|
}
|
||
|
|
||
|
async run(message) {
|
||
|
message.sendT("general/ping:CONTENT", {
|
||
|
ping: "..."
|
||
|
}).then((m) => {
|
||
|
m.sendT("general/ping:CONTENT", {
|
||
|
ping: m.createdTimestamp - message.createdTimestamp
|
||
|
}, {
|
||
|
edit: true
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
};
|
||
|
|
||
|
module.exports = Ping;
|