aboutsummaryrefslogtreecommitdiff
path: root/commands/about.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2022-11-29 08:27:00 -0500
committerAndrew Lee <alee14498@protonmail.com>2022-11-29 08:27:00 -0500
commitd8068715eff8536bb223b191aaa69efc35af1a36 (patch)
treedd8a1a367673f40d7495155d8a2dec688a7aef3a /commands/about.js
parent6d2b8650972cde46953999195f26c29bb5660d36 (diff)
downloadDLAP-d8068715eff8536bb223b191aaa69efc35af1a36.tar.gz
DLAP-d8068715eff8536bb223b191aaa69efc35af1a36.tar.bz2
DLAP-d8068715eff8536bb223b191aaa69efc35af1a36.zip
Fixed formatting for embeds
Diffstat (limited to 'commands/about.js')
-rw-r--r--commands/about.js16
1 files changed, 9 insertions, 7 deletions
diff --git a/commands/about.js b/commands/about.js
index dbc96c2..442cb48 100644
--- a/commands/about.js
+++ b/commands/about.js
@@ -31,13 +31,15 @@ export default {
async execute(interaction, bot) {
const aboutEmbed = new EmbedBuilder()
.setAuthor({ name: `About ${bot.user.username}`, iconURL: bot.user.avatarURL() })
- .addFields({ name: 'Information', value: 'A Discord bot that plays local audio tracks.' })
- .addFields({ name: 'Version', value: `DLAP ${npmPackage.version}` })
- .addFields({ name: 'Original Creator', value: 'Andrew Lee (Alee#4277)' }) // Do not remove this since I created this :)
- // .addFields({ name: 'Contributors', value: '[your name] (discord#0000)' })
- // .addFields({ name: 'Forked by', value: '[your name] (discord#0000)' })
- .addFields({ name: 'Frameworks', value: `Discord.JS ${version} + Voice` })
- .addFields({ name: 'License', value: 'GNU General Public License v3.0' })
+ .addFields(
+ { name: 'Information', value: 'A Discord bot that plays local audio tracks.' },
+ { name: 'Version', value: `DLAP ${npmPackage.version}` },
+ { name: 'Original Creator', value: 'Andrew Lee (Alee#4277)' }, // Do not remove this since I created this :)
+ // { name: 'Contributors', value: '[your name] (discord#0000)' },
+ // { name: 'Forked by', value: '[your name] (discord#0000)' },
+ { name: 'Frameworks', value: `Discord.JS ${version} + Voice` },
+ { name: 'License', value: 'GNU General Public License v3.0' }
+ )
.setFooter({ text: '© Copyright 2020-2022 Andrew Lee' })
.setColor('#0066ff');