diff --git a/commands/avatar.js b/commands/avatar.js index 519db6d..d88b693 100644 --- a/commands/avatar.js +++ b/commands/avatar.js @@ -30,15 +30,12 @@ module.exports = { handle (_, config, user, target) { return { embeds: [{ - title: `:frame_photo: ${target.username}'s Beautiful Avatar!`, + title: `:frame_photo: ${target.username}'s Beautiful Profile Picture!`, + description: `[Profile picture link (Mobile users, tap here!)](${target.displayAvatarURL({ dynamic: true })})`, color: 9442302, - footer: { - icon_url: user.displayAvatarURL(), - text: config.footerTxt - }, - image: { - url: target.displayAvatarURL({ dynamic: true }) - } + image: { url: target.displayAvatarURL({ dynamic: true }) }, + footer: { icon_url: user.displayAvatarURL(), text: config.footerTxt } + }] }; } diff --git a/commands/contributors.js b/commands/contributors.js index 9b11355..13a0eb2 100644 --- a/commands/contributors.js +++ b/commands/contributors.js @@ -1,7 +1,7 @@ module.exports = { name: require('path').parse(__filename).name, - description: 'Attributions to open source components used by Anitrox', + description: 'Attributions to users who have worked on Anitrox!', options: [], async parseMessage (_, config, message) { @@ -28,11 +28,11 @@ module.exports = { fields: [ { name: 'chuu_shi', - value: 'Thanks to Chuu for letting me use some of his resources to host Anitrox!\n <:GitHub:778165439477841981> [Check out his code!](https://github.com/chuushi)' + value: 'Thanks to Chuu for letting me use some of his resources to host Anitrox!\n <:GitHub:778165439477841981> [Check out his code!](https://github.com/chuushi)\n <:discord:1057053513210937444> [Check out his Discord community!](https://port.chuu.sh/)' }, { - name: 'OfficialTCGMatt', - value: "Matt has helped quite a bit with Anitrox, especially in the early days of Anitrox's development! He even has his own bot!\n <:GitHub:778165439477841981> [Check out his code!](https://github.com/OfficialTCGMatt)\n :robot: [Check out TheCodingBot!](https://github.com/TMC-Software/TheCodingBot)" + name: 'TheCodingGuy', + value: "Matt has helped quite a bit with Anitrox, especially in the early days of Anitrox's development! He even has his own bot!\n <:GitHub:778165439477841981> [Check out his code!](https://github.com/Aisuruneko)\n :robot: [Check out TheCodingBot!](https://github.com/NetroCorp/TheCodingBot)\n :globe_with_meridians: [Check out Netro Corp!](https://netrocorp.net)" }, { name: 'Foxinatel', diff --git a/commands/restart.js b/commands/restart.js index 51c91a2..fada205 100644 --- a/commands/restart.js +++ b/commands/restart.js @@ -16,7 +16,7 @@ module.exports = { if (user.id === process.env.OWNERID) { const embeds = [{ title: ' Restart Bot', - description: 'Restarting Anitrox...', + description: ' Restarting now, Be back in a minute!', color: 9442302, footer: { icon_url: user.displayAvatarURL(), diff --git a/commands/stop.js b/commands/stop.js index 9035530..cb998ca 100644 --- a/commands/stop.js +++ b/commands/stop.js @@ -17,8 +17,8 @@ module.exports = { console.log('[SYSTEM] [INFO] ' + `The bot is going down for shut down. \nShutdown requested by ${user.username}`); await channel.send({ embeds: [{ - title: '**Shut down the bot**', - description: ' **Shutting Down...**', + title: 'Shut down the bot', + description: ' Shutting down now, Until next time!', color: 9442302, footer: { icon_url: user.displayAvatarURL(), diff --git a/config-example.json b/config-example.json index 58500fc..ff59d8e 100644 --- a/config-example.json +++ b/config-example.json @@ -1,8 +1,8 @@ { "prefix": "n!", "release": "Developer Release", - "build": "1.4dev", - "footerTxt": "Anitrox, made with <3 by IDeletedSystem64 | 2018-2022", + "build": "1.3.3dev", + "footerTxt": "Anitrox, made with <3 by IDeletedSystem64 | 2018-2023", "sandbox": { "enabled": false, "id": "0", diff --git a/events/messageCreate.js b/events/messageCreate.js index aa453a5..a8cdc43 100644 --- a/events/messageCreate.js +++ b/events/messageCreate.js @@ -11,17 +11,6 @@ module.exports = { if (!client.commands.has(command)) return; try { - message.channel.send({ - embeds: [{ - title: `<:AnitroxWarning:997565364718276669> Attention, ${message.author.username}!`, - description: `Anitrox will be moving entirely to slash commands in 1.4, You will no longer be able to use \`\` ${command} \`\` by typing ${config.prefix}${command}.\n Please use slash commands in the future. [Learn more](https://support.discord.com/hc/en-us/articles/1500000368501-Slash-Commands-FAQ)`, - color: 15548997, - footer: { - icon_url: message.author.displayAvatarURL(), - text: config.footerTxt - } - }] - }); await client.commands.get(command)?.parseMessage(client, config, message, args); } catch (error) { console.error(error);