From bade4a4b892d1a359efc5d504220bd3a621f1a01 Mon Sep 17 00:00:00 2001 From: ChomeNS Date: Mon, 13 Mar 2023 14:21:41 +0700 Subject: [PATCH] remove changelogs because it is kinda unused --- changelog.json | 8 -------- commands/changelog.js | 41 ----------------------------------------- 2 files changed, 49 deletions(-) delete mode 100644 changelog.json delete mode 100644 commands/changelog.js diff --git a/changelog.json b/changelog.json deleted file mode 100644 index 98cbc81..0000000 --- a/changelog.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - "Added even more Discord commands support", - "1.19 Support", - "*music play file autocomplete", - "Improved URL loading in *draw and *music playurl", - "You can now do *clearchat [player] without \"specific\"", - "Added .nbs and .txt support for music command" -] \ No newline at end of file diff --git a/commands/changelog.js b/commands/changelog.js deleted file mode 100644 index 4e9627c..0000000 --- a/commands/changelog.js +++ /dev/null @@ -1,41 +0,0 @@ -const changelog = require('../changelog.json') -const { EmbedBuilder } = require('discord.js') -module.exports = { - name: 'changelog', - alias: ['changelogs'], - description: 'Shows the bot\'s changelog', - usage: '', - trusted: 0, - execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) { - const component = [] - - component.push({ text: 'Changelogs ', color: 'green' }) - component.push({ text: '(', color: 'dark_gray' }) - component.push({ text: changelog.length, color: 'gray' }) - component.push({ text: ')', color: 'dark_gray' }) - component.push({ text: ':', color: 'gray' }) - component.push('\n') - changelog.forEach((message, number) => { - number += 1 - component.push({ text: number, color: 'gray' }) - component.push({ text: ' - ', color: 'dark_gray' }) - component.push({ text: message, color: 'gray' }) - component.push('\n') - }) - component.pop() - - bot.tellraw(selector, component) - }, - discordExecute (bot, username, sender, prefix, args, channeldc, message, config) { - let changelogs = '' - changelog.forEach((message, number) => { - number += 1 - changelogs += `\`${number}\` - \`${message}\`` + '\n' - }) - const Embed = new EmbedBuilder() - .setColor(config.discord.embedsColors.normal) - .setTitle(`Changelogs (${changelog.length})`) - .setDescription(changelogs) - channeldc.send({ embeds: [Embed] }) - } -}