aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2021-08-30 19:56:13 -0400
committerAndrew Lee <alee14498@protonmail.com>2021-08-30 19:56:13 -0400
commitcaa341ec28a1247bd06602ba3bc727a7ff8f1fd7 (patch)
treeaba91bfdc0e9fd4c1683358fe4c4798127fc239c
parent946eebabce9011d653364880ffbd2e049bd49934 (diff)
downloadAleeBot-caa341ec28a1247bd06602ba3bc727a7ff8f1fd7.tar.gz
AleeBot-caa341ec28a1247bd06602ba3bc727a7ff8f1fd7.tar.bz2
AleeBot-caa341ec28a1247bd06602ba3bc727a7ff8f1fd7.zip
Help + About changes; Corrections in README; Added new play status
-rw-r--r--README.md2
-rw-r--r--bot_discord.js5
-rw-r--r--commands/about.js3
-rw-r--r--commands/help.js3
-rw-r--r--commands/quote.js2
-rw-r--r--package.json2
6 files changed, 9 insertions, 8 deletions
diff --git a/README.md b/README.md
index 07f7027..6665b03 100644
--- a/README.md
+++ b/README.md
@@ -20,7 +20,7 @@
<p>Here's the list of people who helped me with AleeBot for discord servers</p>
<ul>
<li>Alee14</li>
- <li>OfficialRain (Rain)</li>
+ <li>OfficialRain (Raina)</li>
<li>jtsshieh</li>
</ul>
<br>
diff --git a/bot_discord.js b/bot_discord.js
index c1196d4..a390fef 100644
--- a/bot_discord.js
+++ b/bot_discord.js
@@ -51,13 +51,14 @@ const activities = [
'Drawing shapes',
'Fighting Quad',
'Ultra Jump Mania!',
- 'Exposing TAS-Corp',
+ 'Exposing TAS-Corp',
'Fighting Evelyn Claythorne',
'Installing Windows 11',
'Breaking Windows 10',
'Reticulating splines',
'Dag dag!',
- '90% bug free!'
+ '90% bug free!',
+ 'Now running ' + Discord.version + '!'
];
const log = (message) => {
diff --git a/commands/about.js b/commands/about.js
index 81f9bf8..5fd11de 100644
--- a/commands/about.js
+++ b/commands/about.js
@@ -23,8 +23,9 @@ module.exports.run = async (client, message) => {
const aboutEmbed = new MessageEmbed()
.setAuthor(`AleeBot ${require('../storage/settings.json').abVersion}`, client.user.avatarURL())
.addField('About AleeBot', 'AleeBot is an all-in-one bot that\'s made from the Discord.JS api!')
+ .addField('License', 'GNU General Public License v3.0')
.addField('Contributors', 'Andrew Lee (Founder of this project)\nOfficialRain (Raina) (Uptime Command)\njtsshieh (Command Handler)')
- .setFooter('© Copyright 2017-2021 Alee Productions, Licensed with GPL-3.0')
+ .setFooter('© Copyright 2017-2021 Alee Productions')
.setColor('#1fd619');
let inviteButton = new MessageActionRow()
diff --git a/commands/help.js b/commands/help.js
index 2bad795..8fe42cc 100644
--- a/commands/help.js
+++ b/commands/help.js
@@ -41,9 +41,8 @@ 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 and on ${client.guilds.cache.size} servers`, client.user.avatarURL())
- .setDescription('Every command you input into AleeBot is `' + prefix + '`')
+ .setDescription('Currently on the Alpha-Temp branch. Meaning that experimental features are enabled in this bot...')
.setColor('#1fd619')
- .setFooter('© Copyright 2017-2021 Alee Productions, Licensed with GPL-3.0');
categories.forEach(function(x) {
let cat = '';
diff --git a/commands/quote.js b/commands/quote.js
index 6daeb00..57729ae 100644
--- a/commands/quote.js
+++ b/commands/quote.js
@@ -35,7 +35,7 @@ module.exports.run = async (client, message, args) => {
if (args) {
await mongo().then(async (mongoose) => {
try {
- const quote = await quoteSchema.findOne({quoteID: "1", author: quoAuthor, authorImage: quoAuthorImage, quote: quoQuote, year: quoYear})
+ const quote = await quoteSchema.findOne({quoteID: args[1], author: quoAuthor, authorImage: quoAuthorImage, quote: quoQuote, year: quoYear})
/*
const embed = new MessageEmbed()
.setAuthor(quoAuthor, quoAuthorImage)
diff --git a/package.json b/package.json
index e4c771c..0e34c8d 100644
--- a/package.json
+++ b/package.json
@@ -22,7 +22,7 @@
"blessed": "^0.1.81",
"colors": "^1.3.0",
"discord-together": "^1.1.53",
- "discord.js": "^13.0.0-dev.t1627778678.74fc23b",
+ "discord.js": "^13.0.1",
"eslint": "^7.1.0",
"express": "^4.17.1",
"fs": "0.0.1-security",