aboutsummaryrefslogtreecommitdiff
path: root/commands/setup.js
diff options
context:
space:
mode:
authorAndrew Lee <andrew@alee14.me>2025-01-11 18:02:05 -0500
committerAndrew Lee <andrew@alee14.me>2025-01-11 18:02:05 -0500
commit7e65ae0e135098acad76b8081f34478b4efc077f (patch)
treeb7efc060fca4257a875a5a3e525e2733b6579040 /commands/setup.js
parentf5de90ba89146008af78c16e798e216efccf0c50 (diff)
downloadAleeBot-7e65ae0e135098acad76b8081f34478b4efc077f.tar.gz
AleeBot-7e65ae0e135098acad76b8081f34478b4efc077f.tar.bz2
AleeBot-7e65ae0e135098acad76b8081f34478b4efc077f.zip
Cleaned up some code, author image now support attachments
Diffstat (limited to 'commands/setup.js')
-rw-r--r--commands/setup.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/commands/setup.js b/commands/setup.js
index 380e85e..c797f7d 100644
--- a/commands/setup.js
+++ b/commands/setup.js
@@ -27,7 +27,8 @@ module.exports.run = async (client, message) => {
.setDescription('Select the options')
.addField('Logging', 'channelid', true)
.addField('Broadcast', 'placeholder', true)
- .addField('Broadcast', 'placeholder', true);
+ .addField('Quote of the Day', 'placeholder', true)
+ .addField('QOTD Channel', 'channelid', true);
message.author.send({embeds: [setupEmbed]});
};