diff --git a/Commands/Bot/ping.js b/Commands/Bot/ping.js index d76355e..511616e 100644 --- a/Commands/Bot/ping.js +++ b/Commands/Bot/ping.js @@ -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, }); diff --git a/index.js b/index.js index c41caa2..4923152 100644 --- a/index.js +++ b/index.js @@ -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) => {