diff --git a/.gitignore b/.gitignore index 35cef7a..9613f8a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ node_modules +.vscode package-lock.json releasenotes.txt config.json \ No newline at end of file diff --git a/commands/8ball.js b/commands/8ball.js index 94c73fd..3f6c068 100644 --- a/commands/8ball.js +++ b/commands/8ball.js @@ -25,7 +25,7 @@ module.exports = { "color": 13632027, "footer": { "icon_url": "https://images-ext-2.discordapp.net/external/-qaO3jaZLojhEnjrHiKABdXD7gLWqFvdUqHdskNGWhE/https/media.discordapp.net/attachments/549707869138714635/793524910172667964/Screenshot_26.png", - "text": "Made with ❤ in Illinois | Anitrox by IDeletedSystem64" + "text": "placeholder" } } } @@ -35,7 +35,7 @@ module.exports = { "color": 9442302, "footer": { "icon_url": "https://images-ext-2.discordapp.net/external/-qaO3jaZLojhEnjrHiKABdXD7gLWqFvdUqHdskNGWhE/https/media.discordapp.net/attachments/549707869138714635/793524910172667964/Screenshot_26.png", - "text": "Made with ❤ in Illinois | Anitrox © 2018-2021 IDeletedSystem64" + "text": "placeholder" }, "fields": [ diff --git a/commands/info.js b/commands/info.js index 1b3231c..7d8b53c 100644 --- a/commands/info.js +++ b/commands/info.js @@ -3,7 +3,7 @@ module.exports = { name: 'info', description: 'Shows bot and host information', - execute(client, message, args, footer) { + execute(client, message, args) { const { build, release } = require('../config.json'); function Uptime(uptimetype) { let totalSeconds = (uptimetype / 1000); @@ -23,7 +23,6 @@ module.exports = { return uptime; }; - const os = require("os") var osu = require('node-os-utils') var cpu = osu.cpu @@ -33,7 +32,7 @@ module.exports = { "color": 9442302, "footer": { "icon_url": "https://cdn.discordapp.com/attachments/549707869138714635/793524910172667964/Screenshot_26.png", - "text": footer + "text": "meow" }, "thumbnail": { "url": ("https://cdn.discordapp.com/avatars/576805923964715018/20f9b2815850dbbebd6d858308c90330.webp") diff --git a/start.js b/start.js index 4b8e79d..c80c52e 100644 --- a/start.js +++ b/start.js @@ -3,7 +3,7 @@ console.log("Let's get started") const fs = require('fs'); const Discord = require('discord.js'); const { MessageActionRow, MessageButton } = require('discord.js') -const { build, release, prefix, token } = require('./config.json'); +const { build, release, prefix, token, footer } = require('./config.json'); const os = require("os"); const activities_list = [ @@ -21,8 +21,6 @@ const activities_list = [ console.log('Starting! This should only take a moment.') const client = new Discord.Client(); client.commands = new Discord.Collection(); -const footicon = "https://cdn.discordapp.com/attachments/803658122299572255/805506708352008232/system64.png" -const footer = "Anitrox, IDeletedSystem64 2018-2022" const commandFiles = fs.readdirSync('./commands').filter(file => file.endsWith('.js'));