diff --git a/bot/commands/Bot/about.js b/bot/commands/Bot/about.js index 7ee86c5..4da802b 100644 --- a/bot/commands/Bot/about.js +++ b/bot/commands/Bot/about.js @@ -1,6 +1,7 @@ const Command = require('../../base/Command.js'); const { version } = require('discord.js'); const moment = require('moment'); +const { EmbedBuilder } = require('@discordjs/builders'); require('moment-duration-format'); @@ -22,8 +23,9 @@ module.exports = class About extends Command { build = 'development'; } - const embed = new client.EmbedBuilder() - .setThumbnail(client.user.avatarURL({format: "png"})) + embed = new EmbedBuilder() + .setColor(client.functions.embedColor(interaction.guild) + .setThumbnail(client.user.vatarURL({format: "png"})) .setTitle('About me!') .addFields([ { @@ -40,8 +42,8 @@ module.exports = class About extends Command { name: 'Links', value: '[Support](https://discord.gg/HCF8mdv) | [Git](https://gitdab.com/embee/woomy)' } - ]); - interaction.reply({embeds: embed}); + ]) + interaction.reply({embeds: embed}) } diff --git a/package-lock.json b/package-lock.json index 97eff8c..2483dac 100644 --- a/package-lock.json +++ b/package-lock.json @@ -17,7 +17,6 @@ "eslint": "^8.29.0", "fs-readdir-recursive": "^1.1.0", "moment": "^2.29.4", - "moment-duration-format": "^2.3.2", "node-fetch": "^2.6.7", "pg": "^8.5.1", "pg-format": "^1.0.4", @@ -1052,11 +1051,6 @@ "node": "*" } }, - "node_modules/moment-duration-format": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/moment-duration-format/-/moment-duration-format-2.3.2.tgz", - "integrity": "sha512-cBMXjSW+fjOb4tyaVHuaVE/A5TqkukDWiOfxxAjY+PEqmmBQlLwn+8OzwPiG3brouXKY5Un4pBjAeB6UToXHaQ==" - }, "node_modules/ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", @@ -2534,11 +2528,6 @@ "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==" }, - "moment-duration-format": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/moment-duration-format/-/moment-duration-format-2.3.2.tgz", - "integrity": "sha512-cBMXjSW+fjOb4tyaVHuaVE/A5TqkukDWiOfxxAjY+PEqmmBQlLwn+8OzwPiG3brouXKY5Un4pBjAeB6UToXHaQ==" - }, "ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", diff --git a/package.json b/package.json index a183f1b..624eadb 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,6 @@ "eslint": "^8.29.0", "fs-readdir-recursive": "^1.1.0", "moment": "^2.29.4", - "moment-duration-format": "^2.3.2", "node-fetch": "^2.6.7", "pg": "^8.5.1", "pg-format": "^1.0.4",