@ -1,13 +1,13 @@
const Command = require(`../../Structure/Command.js`);
const Command = require("../../Structure/Command.js");
module.exports = class extends Command {
constructor(client) {
super(client, {
name: `ping`,
description: `Return the bot ping.`,
category: `Bot`,
name: "ping",
description: "Return the bot ping.",
category: "Bot",
enabled: true,
aliases: [`latency`],
aliases: ["latency"],
cooldown: 3,
dmOnly: false,
});
@ -28,7 +28,6 @@ const initialize = async () => {
client.login(process.env.BOTUSERNAME, process.env.PASSWORD);
client.on('rawFbns', (data) => console.log(data));
mongoose.connect(process.env.DATABASEURL, { useNewUrlParser: true, useUnifiedTopology: true }).then(() => {
client.logger.log(`Connected to the Mongodb database.`, `ready`);
}).catch((err) => {