aboutsummaryrefslogtreecommitdiff
path: root/commands
diff options
context:
space:
mode:
Diffstat (limited to 'commands')
-rw-r--r--commands/info.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/commands/info.js b/commands/info.js
index 95eaebb..a74d73e 100644
--- a/commands/info.js
+++ b/commands/info.js
@@ -20,7 +20,6 @@
module.exports.run = async (client, message) => {
const { MessageEmbed, version } = require('discord.js');
const os = require('os');
- const mongoose = require('mongoose');
const embed = new MessageEmbed()
.setTitle('Information on AleeBot\'s Host')
.addField('OS Hostname: ', os.hostname(), true)
@@ -28,7 +27,6 @@ module.exports.run = async (client, message) => {
.addField('Discord.JS Version: ', version, true)
.addField('OS Platform: ', os.platform(), true)
.addField('OS Version: ', os.release(), true)
- .addField('Mongoose Version:', mongoose.version, true)
.setColor('#1fd619');
await message.channel.send({ embeds: [embed] });
};