aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2023-10-14 00:23:17 -0400
committerAndrew Lee <alee14498@protonmail.com>2023-10-14 00:23:17 -0400
commit632ce4387c3458c87931528f4a047f0df103e5a7 (patch)
treec0b771f9e2d8c0b61ec00afbf23d17498effbc70
parenta0752954dc3418103c32eed256e1156f1a0681ba (diff)
downloadAleeBot-632ce4387c3458c87931528f4a047f0df103e5a7.tar.gz
AleeBot-632ce4387c3458c87931528f4a047f0df103e5a7.tar.bz2
AleeBot-632ce4387c3458c87931528f4a047f0df103e5a7.zip
Fixed some problems
-rw-r--r--commands/help.js2
-rw-r--r--storage/settings.json2
2 files changed, 2 insertions, 2 deletions
diff --git a/commands/help.js b/commands/help.js
index 0b9191e..7a824f1 100644
--- a/commands/help.js
+++ b/commands/help.js
@@ -41,7 +41,7 @@ module.exports.run = async (client, message) => {
if (!message.guild.members.cache.get(client.user.id).permissions.has('EMBED_LINKS')) return message.reply('ERROR: AleeBot doesn\'t have the permission to send embed links, please enable them to use the full help.');
const embed = new Discord.MessageEmbed()
.setAuthor('AleeBot ' + require('../storage/settings.json').abVersion + ` Help`, client.user.avatarURL())
- .setDescription('Every command you input into AleeBot is `ab:`')
+ .setDescription('Every command you input into AleeBot is `' + prefix + '`')
.setFooter(`Currently serving on ${client.guilds.cache.size} servers`)
.setColor('#1fd619')
diff --git a/storage/settings.json b/storage/settings.json
index 83932cc..b53fd84 100644
--- a/storage/settings.json
+++ b/storage/settings.json
@@ -1,4 +1,4 @@
{
"abVersion": "2.13.0 Beta",
- "prefix": "abb:"
+ "prefix": "ab:"
}