From 9f73036cde6ede9b23c062a139add97b1e711b7a Mon Sep 17 00:00:00 2001 From: Killian Date: Fri, 28 Aug 2020 21:30:56 +0200 Subject: [PATCH] Removed useless line --- Commands/Bot/ping.js | 10 +++++----- index.js | 1 - 2 files changed, 5 insertions(+), 6 deletions(-) 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) => {