diff --git a/commands/analyze/age.js b/commands/analyze/age.js index 8499672d..26090d5a 100644 --- a/commands/analyze/age.js +++ b/commands/analyze/age.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class AgeCommand extends Command { constructor(client) { diff --git a/commands/analyze/aspect-ratio.js b/commands/analyze/aspect-ratio.js index 176dd999..f29b03f2 100644 --- a/commands/analyze/aspect-ratio.js +++ b/commands/analyze/aspect-ratio.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { loadImage } = require('canvas'); const request = require('node-superfetch'); const { gcd } = require('../../util/Util'); diff --git a/commands/analyze/birthstone.js b/commands/analyze/birthstone.js index fc0b964a..5d6f8424 100644 --- a/commands/analyze/birthstone.js +++ b/commands/analyze/birthstone.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { list, firstUpperCase } = require('../../util/Util'); const { months } = require('../../assets/json/month'); const stones = require('../../assets/json/birthstone'); diff --git a/commands/analyze/character-count.js b/commands/analyze/character-count.js index 3b631dff..fc03434b 100644 --- a/commands/analyze/character-count.js +++ b/commands/analyze/character-count.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { formatNumber } = require('../../util/Util'); const { Message } = require('discord.js'); diff --git a/commands/analyze/chinese-zodiac.js b/commands/analyze/chinese-zodiac.js index 7b2e8bcf..d75934bb 100644 --- a/commands/analyze/chinese-zodiac.js +++ b/commands/analyze/chinese-zodiac.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const signs = require('../../assets/json/chinese-zodiac'); module.exports = class ChineseZodiacCommand extends Command { diff --git a/commands/analyze/domain-available.js b/commands/analyze/domain-available.js index ab006b56..e6f11366 100644 --- a/commands/analyze/domain-available.js +++ b/commands/analyze/domain-available.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { parseDomain, ParseResultType } = require('parse-domain'); const { GODADDY_KEY, GODADDY_SECRET } = process.env; diff --git a/commands/analyze/dominant-color.js b/commands/analyze/dominant-color.js index abeee04a..567fd506 100644 --- a/commands/analyze/dominant-color.js +++ b/commands/analyze/dominant-color.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const ntc = require('ntcjs'); diff --git a/commands/analyze/face.js b/commands/analyze/face.js index cd753921..6f5131e5 100644 --- a/commands/analyze/face.js +++ b/commands/analyze/face.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { oneLine } = require('common-tags'); const { base64 } = require('../../util/Util'); diff --git a/commands/analyze/gender.js b/commands/analyze/gender.js index 48b0ba3e..28237e64 100644 --- a/commands/analyze/gender.js +++ b/commands/analyze/gender.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class GenderCommand extends Command { diff --git a/commands/analyze/generation.js b/commands/analyze/generation.js index 75593252..216579bf 100644 --- a/commands/analyze/generation.js +++ b/commands/analyze/generation.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const generations = require('../../assets/json/generation'); module.exports = class GenerationCommand extends Command { diff --git a/commands/analyze/has-transparency.js b/commands/analyze/has-transparency.js index 80ffad91..072363d2 100644 --- a/commands/analyze/has-transparency.js +++ b/commands/analyze/has-transparency.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { loadImage } = require('canvas'); const request = require('node-superfetch'); const { hasAlpha } = require('../../util/Canvas'); diff --git a/commands/analyze/image-size.js b/commands/analyze/image-size.js index 19005ee3..69c992e4 100644 --- a/commands/analyze/image-size.js +++ b/commands/analyze/image-size.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { loadImage } = require('canvas'); const request = require('node-superfetch'); diff --git a/commands/analyze/is-it-down.js b/commands/analyze/is-it-down.js index 55fee12c..0b1a1dd0 100644 --- a/commands/analyze/is-it-down.js +++ b/commands/analyze/is-it-down.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { parseDomain, ParseResultType } = require('parse-domain'); diff --git a/commands/analyze/levenshtein.js b/commands/analyze/levenshtein.js index e3613160..b52be2d8 100644 --- a/commands/analyze/levenshtein.js +++ b/commands/analyze/levenshtein.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const wuzzy = require('wuzzy'); module.exports = class LevenshteinCommand extends Command { diff --git a/commands/analyze/nsfw-image.js b/commands/analyze/nsfw-image.js index 6f466576..a9449a88 100644 --- a/commands/analyze/nsfw-image.js +++ b/commands/analyze/nsfw-image.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { stripIndents } = require('common-tags'); const { isImageNSFW } = require('../../util/Util'); diff --git a/commands/analyze/nsfw-url.js b/commands/analyze/nsfw-url.js index 71849169..5bfbf58c 100644 --- a/commands/analyze/nsfw-url.js +++ b/commands/analyze/nsfw-url.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { isUrlNSFW } = require('../../util/Util'); module.exports = class NsfwUrlCommand extends Command { diff --git a/commands/analyze/ocr.js b/commands/analyze/ocr.js index 4025915b..2686209d 100644 --- a/commands/analyze/ocr.js +++ b/commands/analyze/ocr.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createWorker } = require('tesseract.js'); const { reactIfAble } = require('../../util/Util'); const { LOADING_EMOJI_ID, SUCCESS_EMOJI_ID, FAILURE_EMOJI_ID } = process.env; diff --git a/commands/analyze/parse-time.js b/commands/analyze/parse-time.js index 7c67cd24..ff3ca7bf 100644 --- a/commands/analyze/parse-time.js +++ b/commands/analyze/parse-time.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const moment = require('moment'); require('moment-duration-format'); diff --git a/commands/analyze/percent-diff.js b/commands/analyze/percent-diff.js index 928194c6..699d202e 100644 --- a/commands/analyze/percent-diff.js +++ b/commands/analyze/percent-diff.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const wuzzy = require('wuzzy'); module.exports = class PercentDiffCommand extends Command { diff --git a/commands/analyze/read-qr-code.js b/commands/analyze/read-qr-code.js index 9d044ab2..16fc818c 100644 --- a/commands/analyze/read-qr-code.js +++ b/commands/analyze/read-qr-code.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { shorten } = require('../../util/Util'); diff --git a/commands/analyze/repost.js b/commands/analyze/repost.js index 0b422e40..958279ff 100644 --- a/commands/analyze/repost.js +++ b/commands/analyze/repost.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const UserAgent = require('user-agents'); const { stripIndents } = require('common-tags'); diff --git a/commands/analyze/safe-url.js b/commands/analyze/safe-url.js index 80daae2d..e59bc3c6 100644 --- a/commands/analyze/safe-url.js +++ b/commands/analyze/safe-url.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { version } = require('../../package'); const { GOOGLE_KEY } = process.env; diff --git a/commands/analyze/scrabble-score.js b/commands/analyze/scrabble-score.js index 01693eae..aa5b6a54 100644 --- a/commands/analyze/scrabble-score.js +++ b/commands/analyze/scrabble-score.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { formatNumber } = require('../../util/Util'); const letters = require('../../assets/json/scrabble-score'); diff --git a/commands/analyze/screenshot.js b/commands/analyze/screenshot.js index f17900db..c16e81a4 100644 --- a/commands/analyze/screenshot.js +++ b/commands/analyze/screenshot.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { isImageNSFW, isUrlNSFW } = require('../../util/Util'); diff --git a/commands/analyze/severe-toxicity.js b/commands/analyze/severe-toxicity.js index 47aa7c18..d2ce25ac 100644 --- a/commands/analyze/severe-toxicity.js +++ b/commands/analyze/severe-toxicity.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { Message } = require('discord.js'); const { GOOGLE_KEY } = process.env; diff --git a/commands/analyze/text-diff.js b/commands/analyze/text-diff.js index b2c08672..3c37519a 100644 --- a/commands/analyze/text-diff.js +++ b/commands/analyze/text-diff.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const Diff = require('text-diff'); module.exports = class TextDiffCommand extends Command { diff --git a/commands/analyze/toxicity.js b/commands/analyze/toxicity.js index cbf51169..2c2a57d2 100644 --- a/commands/analyze/toxicity.js +++ b/commands/analyze/toxicity.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { Message } = require('discord.js'); const { GOOGLE_KEY } = process.env; diff --git a/commands/analyze/valid-url.js b/commands/analyze/valid-url.js index b5d86bd6..393f1de0 100644 --- a/commands/analyze/valid-url.js +++ b/commands/analyze/valid-url.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const validURL = require('valid-url'); module.exports = class ValidUrlCommand extends Command { diff --git a/commands/analyze/what-anime.js b/commands/analyze/what-anime.js index 4a43c7ad..53ae7272 100644 --- a/commands/analyze/what-anime.js +++ b/commands/analyze/what-anime.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { createCanvas, loadImage } = require('canvas'); const { stripIndents } = require('common-tags'); diff --git a/commands/analyze/zodiac-sign.js b/commands/analyze/zodiac-sign.js index e6911eed..be39dd75 100644 --- a/commands/analyze/zodiac-sign.js +++ b/commands/analyze/zodiac-sign.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const signs = require('../../assets/json/zodiac-sign'); const monthsWith30 = [4, 6, 9, 11]; diff --git a/commands/cleverbot/cleverbot-end.js b/commands/cleverbot/cleverbot-end.js index 04110cdc..9f11ed54 100644 --- a/commands/cleverbot/cleverbot-end.js +++ b/commands/cleverbot/cleverbot-end.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class CleverbotEndCommand extends Command { constructor(client) { diff --git a/commands/cleverbot/cleverbot.js b/commands/cleverbot/cleverbot.js index 5456bbd3..5e51b05e 100644 --- a/commands/cleverbot/cleverbot.js +++ b/commands/cleverbot/cleverbot.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const Cleverbot = require('../../structures/Cleverbot'); diff --git a/commands/code/beautify.js b/commands/code/beautify.js index a8395bf0..5d5ba94c 100644 --- a/commands/code/beautify.js +++ b/commands/code/beautify.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { js_beautify: beautify } = require('js-beautify'); module.exports = class BeautifyCommand extends Command { diff --git a/commands/code/docs.js b/commands/code/docs.js index dd782660..e418a709 100644 --- a/commands/code/docs.js +++ b/commands/code/docs.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const Docs = require('discord.js-docs'); module.exports = class DocstCommand extends Command { diff --git a/commands/code/github.js b/commands/code/github.js index 6815cc8d..4fad6773 100644 --- a/commands/code/github.js +++ b/commands/code/github.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const moment = require('moment'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); diff --git a/commands/code/lint-rule.js b/commands/code/lint-rule.js index bb82a132..d2977341 100644 --- a/commands/code/lint-rule.js +++ b/commands/code/lint-rule.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const { Linter } = require('eslint'); const linter = new Linter(); diff --git a/commands/code/lint.js b/commands/code/lint.js index c7e99621..99ff8e9f 100644 --- a/commands/code/lint.js +++ b/commands/code/lint.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { Linter } = require('eslint'); const linter = new Linter(); const { stripIndents } = require('common-tags'); diff --git a/commands/code/mdn.js b/commands/code/mdn.js index c6657b6d..370f1561 100644 --- a/commands/code/mdn.js +++ b/commands/code/mdn.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); diff --git a/commands/code/npm.js b/commands/code/npm.js index 555ced36..b794ed88 100644 --- a/commands/code/npm.js +++ b/commands/code/npm.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const moment = require('moment'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); diff --git a/commands/code/stack-overflow.js b/commands/code/stack-overflow.js index d1fc9ff3..7f73b9ce 100644 --- a/commands/code/stack-overflow.js +++ b/commands/code/stack-overflow.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const moment = require('moment'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); diff --git a/commands/edit-avatar/avatar-fusion.js b/commands/edit-avatar/avatar-fusion.js index 97451fb3..8e71e8a1 100644 --- a/commands/edit-avatar/avatar-fusion.js +++ b/commands/edit-avatar/avatar-fusion.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); diff --git a/commands/edit-avatar/eject.js b/commands/edit-avatar/eject.js index 5f295d63..d83efb02 100644 --- a/commands/edit-avatar/eject.js +++ b/commands/edit-avatar/eject.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const GIFEncoder = require('gifencoder'); const { MersenneTwister19937, bool } = require('random-js'); diff --git a/commands/edit-avatar/fire.js b/commands/edit-avatar/fire.js index cd563442..8ba68c49 100644 --- a/commands/edit-avatar/fire.js +++ b/commands/edit-avatar/fire.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const GIFEncoder = require('gifencoder'); const request = require('node-superfetch'); diff --git a/commands/edit-avatar/hat.js b/commands/edit-avatar/hat.js index c911f8ed..6322f616 100644 --- a/commands/edit-avatar/hat.js +++ b/commands/edit-avatar/hat.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-avatar/he-lives-in-you.js b/commands/edit-avatar/he-lives-in-you.js index 29f24655..3706d514 100644 --- a/commands/edit-avatar/he-lives-in-you.js +++ b/commands/edit-avatar/he-lives-in-you.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-avatar/hearts.js b/commands/edit-avatar/hearts.js index d8e0f5f2..bcc656dd 100644 --- a/commands/edit-avatar/hearts.js +++ b/commands/edit-avatar/hearts.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-avatar/i-have-the-power.js b/commands/edit-avatar/i-have-the-power.js index dff7ac95..77ee2e87 100644 --- a/commands/edit-avatar/i-have-the-power.js +++ b/commands/edit-avatar/i-have-the-power.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-avatar/rip.js b/commands/edit-avatar/rip.js index 99fd1765..15914a15 100644 --- a/commands/edit-avatar/rip.js +++ b/commands/edit-avatar/rip.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-avatar/status-button.js b/commands/edit-avatar/status-button.js index 1e97683a..062cd086 100644 --- a/commands/edit-avatar/status-button.js +++ b/commands/edit-avatar/status-button.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); module.exports = class StatusButtonCommand extends Command { diff --git a/commands/edit-avatar/steam-now-playing.js b/commands/edit-avatar/steam-now-playing.js index 0679b15f..6e045ad5 100644 --- a/commands/edit-avatar/steam-now-playing.js +++ b/commands/edit-avatar/steam-now-playing.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-avatar/triggered.js b/commands/edit-avatar/triggered.js index 730a9966..8fc3f5f8 100644 --- a/commands/edit-avatar/triggered.js +++ b/commands/edit-avatar/triggered.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const GIFEncoder = require('gifencoder'); const request = require('node-superfetch'); diff --git a/commands/edit-face/anime-eyes.js b/commands/edit-face/anime-eyes.js index 85cf2633..231fa958 100644 --- a/commands/edit-face/anime-eyes.js +++ b/commands/edit-face/anime-eyes.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); diff --git a/commands/edit-face/danny-devito.js b/commands/edit-face/danny-devito.js index 2bc8eed4..5c6b31e3 100644 --- a/commands/edit-face/danny-devito.js +++ b/commands/edit-face/danny-devito.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); diff --git a/commands/edit-face/emoji-face.js b/commands/edit-face/emoji-face.js index ae5ddf76..76b64e1a 100644 --- a/commands/edit-face/emoji-face.js +++ b/commands/edit-face/emoji-face.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { GuildEmoji } = require('discord.js'); const request = require('node-superfetch'); const { createCanvas, loadImage } = require('canvas'); diff --git a/commands/edit-face/eyes.js b/commands/edit-face/eyes.js index ec8dcfc0..cefaa1c7 100644 --- a/commands/edit-face/eyes.js +++ b/commands/edit-face/eyes.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); diff --git a/commands/edit-image-text/ace-attorney.js b/commands/edit-image-text/ace-attorney.js index a80c123f..bd57b37d 100644 --- a/commands/edit-image-text/ace-attorney.js +++ b/commands/edit-image-text/ace-attorney.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { firstUpperCase, list } = require('../../util/Util'); diff --git a/commands/edit-image-text/achievement.js b/commands/edit-image-text/achievement.js index 4d0b4396..85f14bb0 100644 --- a/commands/edit-image-text/achievement.js +++ b/commands/edit-image-text/achievement.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { shortenText } = require('../../util/Canvas'); diff --git a/commands/edit-image-text/apple-engraving.js b/commands/edit-image-text/apple-engraving.js index bfe421f6..74866fee 100644 --- a/commands/edit-image-text/apple-engraving.js +++ b/commands/edit-image-text/apple-engraving.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { list } = require('../../util/Util'); const products = require('../../assets/json/apple-engraving'); diff --git a/commands/edit-image-text/axis-cult-sign-up.js b/commands/edit-image-text/axis-cult-sign-up.js index d1891336..ecdd28dd 100644 --- a/commands/edit-image-text/axis-cult-sign-up.js +++ b/commands/edit-image-text/axis-cult-sign-up.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); diff --git a/commands/edit-image-text/caution.js b/commands/edit-image-text/caution.js index 19e7f202..21b8b9e6 100644 --- a/commands/edit-image-text/caution.js +++ b/commands/edit-image-text/caution.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-image-text/certificate.js b/commands/edit-image-text/certificate.js index b29d686f..afc450c9 100644 --- a/commands/edit-image-text/certificate.js +++ b/commands/edit-image-text/certificate.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const moment = require('moment'); const path = require('path'); diff --git a/commands/edit-image-text/chinese-restaurant.js b/commands/edit-image-text/chinese-restaurant.js index fdf45848..51faa849 100644 --- a/commands/edit-image-text/chinese-restaurant.js +++ b/commands/edit-image-text/chinese-restaurant.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-image-text/cool-text.js b/commands/edit-image-text/cool-text.js index d50aca7b..5fe21ed6 100644 --- a/commands/edit-image-text/cool-text.js +++ b/commands/edit-image-text/cool-text.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { Agent } = require('https'); const { list } = require('../../util/Util'); diff --git a/commands/edit-image-text/danger.js b/commands/edit-image-text/danger.js index e54304d7..5cff32ce 100644 --- a/commands/edit-image-text/danger.js +++ b/commands/edit-image-text/danger.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-image-text/font.js b/commands/edit-image-text/font.js index e8de6f6c..926468ac 100644 --- a/commands/edit-image-text/font.js +++ b/commands/edit-image-text/font.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas } = require('canvas'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-image-text/gandhi-quote.js b/commands/edit-image-text/gandhi-quote.js index 4f1ca20f..3693e306 100644 --- a/commands/edit-image-text/gandhi-quote.js +++ b/commands/edit-image-text/gandhi-quote.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-image-text/highway-sign.js b/commands/edit-image-text/highway-sign.js index f2abd393..aaf6a4bd 100644 --- a/commands/edit-image-text/highway-sign.js +++ b/commands/edit-image-text/highway-sign.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-image-text/hollywood-star.js b/commands/edit-image-text/hollywood-star.js index 78b78eb5..0636cc16 100644 --- a/commands/edit-image-text/hollywood-star.js +++ b/commands/edit-image-text/hollywood-star.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); diff --git a/commands/edit-image-text/jeopardy-question.js b/commands/edit-image-text/jeopardy-question.js index 3a60d3a9..90317c18 100644 --- a/commands/edit-image-text/jeopardy-question.js +++ b/commands/edit-image-text/jeopardy-question.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas } = require('canvas'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-image-text/license-plate.js b/commands/edit-image-text/license-plate.js index 8d1c73eb..3ffa405a 100644 --- a/commands/edit-image-text/license-plate.js +++ b/commands/edit-image-text/license-plate.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); diff --git a/commands/edit-image-text/newspaper.js b/commands/edit-image-text/newspaper.js index fb4c861a..109eeefa 100644 --- a/commands/edit-image-text/newspaper.js +++ b/commands/edit-image-text/newspaper.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const moment = require('moment'); diff --git a/commands/edit-image-text/shields-io-badge.js b/commands/edit-image-text/shields-io-badge.js index d431408f..0a867ffc 100644 --- a/commands/edit-image-text/shields-io-badge.js +++ b/commands/edit-image-text/shields-io-badge.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class ShieldsIoBadgeCommand extends Command { diff --git a/commands/edit-image-text/speed-limit.js b/commands/edit-image-text/speed-limit.js index 6372bbe4..294ee431 100644 --- a/commands/edit-image-text/speed-limit.js +++ b/commands/edit-image-text/speed-limit.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); diff --git a/commands/edit-image-text/spongebob-time-card.js b/commands/edit-image-text/spongebob-time-card.js index 042fbf0b..d2287d55 100644 --- a/commands/edit-image-text/spongebob-time-card.js +++ b/commands/edit-image-text/spongebob-time-card.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-image-text/tweet.js b/commands/edit-image-text/tweet.js index 0575fe1b..a6d36dbc 100644 --- a/commands/edit-image-text/tweet.js +++ b/commands/edit-image-text/tweet.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const moment = require('moment'); const request = require('node-superfetch'); diff --git a/commands/edit-image-text/undertale.js b/commands/edit-image-text/undertale.js index b650ec05..bbdab936 100644 --- a/commands/edit-image-text/undertale.js +++ b/commands/edit-image-text/undertale.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { list } = require('../../util/Util'); diff --git a/commands/edit-image-text/zero-dialogue.js b/commands/edit-image-text/zero-dialogue.js index ec1a8498..a7d2d573 100644 --- a/commands/edit-image-text/zero-dialogue.js +++ b/commands/edit-image-text/zero-dialogue.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-image/analog-clock.js b/commands/edit-image/analog-clock.js index ccd7f243..fd10346c 100644 --- a/commands/edit-image/analog-clock.js +++ b/commands/edit-image/analog-clock.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas } = require('canvas'); const moment = require('moment-timezone'); const { firstUpperCase } = require('../../util/Util'); diff --git a/commands/edit-image/approved.js b/commands/edit-image/approved.js index ac2e7234..301978f7 100644 --- a/commands/edit-image/approved.js +++ b/commands/edit-image/approved.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-image/ascii.js b/commands/edit-image/ascii.js index 64420fbc..7086c1fb 100644 --- a/commands/edit-image/ascii.js +++ b/commands/edit-image/ascii.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { loadImage } = require('canvas'); const imageToAscii = require('image-to-ascii'); const request = require('node-superfetch'); diff --git a/commands/edit-image/blur.js b/commands/edit-image/blur.js index 30ed0e7a..769214aa 100644 --- a/commands/edit-image/blur.js +++ b/commands/edit-image/blur.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const stackBlur = require('stackblur-canvas'); diff --git a/commands/edit-image/bob-ross.js b/commands/edit-image/bob-ross.js index 837d69e5..53149d04 100644 --- a/commands/edit-image/bob-ross.js +++ b/commands/edit-image/bob-ross.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-image/brazzers.js b/commands/edit-image/brazzers.js index e0fc078f..9500fc1c 100644 --- a/commands/edit-image/brazzers.js +++ b/commands/edit-image/brazzers.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-image/charcoal.js b/commands/edit-image/charcoal.js index e31ddec7..636222cc 100644 --- a/commands/edit-image/charcoal.js +++ b/commands/edit-image/charcoal.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const gm = require('gm').subClass({ imageMagick: true }); const request = require('node-superfetch'); const { magikToBuffer } = require('../../util/Util'); diff --git a/commands/edit-image/chocolate-milk.js b/commands/edit-image/chocolate-milk.js index 3b6dacd9..550ccecd 100644 --- a/commands/edit-image/chocolate-milk.js +++ b/commands/edit-image/chocolate-milk.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-image/circle.js b/commands/edit-image/circle.js index 1fa3285b..c586e156 100644 --- a/commands/edit-image/circle.js +++ b/commands/edit-image/circle.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); diff --git a/commands/edit-image/color.js b/commands/edit-image/color.js index ef12ac6a..6e6398e8 100644 --- a/commands/edit-image/color.js +++ b/commands/edit-image/color.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas } = require('canvas'); const ntc = require('ntcjs'); diff --git a/commands/edit-image/communist.js b/commands/edit-image/communist.js index 10914266..6241fbe1 100644 --- a/commands/edit-image/communist.js +++ b/commands/edit-image/communist.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-image/contrast.js b/commands/edit-image/contrast.js index 54b62886..6befe85d 100644 --- a/commands/edit-image/contrast.js +++ b/commands/edit-image/contrast.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const { contrast } = require('../../util/Canvas'); diff --git a/commands/edit-image/convert-image.js b/commands/edit-image/convert-image.js index cfdf7f98..0f9581ad 100644 --- a/commands/edit-image/convert-image.js +++ b/commands/edit-image/convert-image.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const { list } = require('../../util/Util'); diff --git a/commands/edit-image/create-qr-code.js b/commands/edit-image/create-qr-code.js index 653b268a..6c2f47b4 100644 --- a/commands/edit-image/create-qr-code.js +++ b/commands/edit-image/create-qr-code.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class CreateQRCodeCommand extends Command { diff --git a/commands/edit-image/desaturate.js b/commands/edit-image/desaturate.js index 1c9f2403..1d2751d1 100644 --- a/commands/edit-image/desaturate.js +++ b/commands/edit-image/desaturate.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const { desaturate } = require('../../util/Canvas'); diff --git a/commands/edit-image/dexter.js b/commands/edit-image/dexter.js index a421d5e7..52e52842 100644 --- a/commands/edit-image/dexter.js +++ b/commands/edit-image/dexter.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-image/distort.js b/commands/edit-image/distort.js index 210e3881..ab2bc916 100644 --- a/commands/edit-image/distort.js +++ b/commands/edit-image/distort.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const { distort } = require('../../util/Canvas'); diff --git a/commands/edit-image/emboss.js b/commands/edit-image/emboss.js index 3a28e4fb..e922a45a 100644 --- a/commands/edit-image/emboss.js +++ b/commands/edit-image/emboss.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const gm = require('gm').subClass({ imageMagick: true }); const request = require('node-superfetch'); const { magikToBuffer } = require('../../util/Util'); diff --git a/commands/edit-image/fire-frame.js b/commands/edit-image/fire-frame.js index 25080eb7..86656daa 100644 --- a/commands/edit-image/fire-frame.js +++ b/commands/edit-image/fire-frame.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-image/fish-eye.js b/commands/edit-image/fish-eye.js index a535dcf0..a4e18f60 100644 --- a/commands/edit-image/fish-eye.js +++ b/commands/edit-image/fish-eye.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const { fishEye } = require('../../util/Canvas'); diff --git a/commands/edit-image/frame.js b/commands/edit-image/frame.js index 8e5274c7..8d93bde4 100644 --- a/commands/edit-image/frame.js +++ b/commands/edit-image/frame.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-image/ghost.js b/commands/edit-image/ghost.js index 22427da9..fd8b80d5 100644 --- a/commands/edit-image/ghost.js +++ b/commands/edit-image/ghost.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); diff --git a/commands/edit-image/glass-shatter.js b/commands/edit-image/glass-shatter.js index f3b3776a..186128b0 100644 --- a/commands/edit-image/glass-shatter.js +++ b/commands/edit-image/glass-shatter.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-image/glitch.js b/commands/edit-image/glitch.js index 441d44db..8518df8b 100644 --- a/commands/edit-image/glitch.js +++ b/commands/edit-image/glitch.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const { distort } = require('../../util/Canvas'); diff --git a/commands/edit-image/greyscale.js b/commands/edit-image/greyscale.js index a62bb359..513780d5 100644 --- a/commands/edit-image/greyscale.js +++ b/commands/edit-image/greyscale.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const { greyscale } = require('../../util/Canvas'); diff --git a/commands/edit-image/gun.js b/commands/edit-image/gun.js index a615f574..0e85e34a 100644 --- a/commands/edit-image/gun.js +++ b/commands/edit-image/gun.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-image/hands.js b/commands/edit-image/hands.js index 4f9019c7..0b005764 100644 --- a/commands/edit-image/hands.js +++ b/commands/edit-image/hands.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-image/ifunny.js b/commands/edit-image/ifunny.js index 20b08126..5ee5ba11 100644 --- a/commands/edit-image/ifunny.js +++ b/commands/edit-image/ifunny.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-image/implode.js b/commands/edit-image/implode.js index fd392471..0bb9bfd4 100644 --- a/commands/edit-image/implode.js +++ b/commands/edit-image/implode.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const gm = require('gm').subClass({ imageMagick: true }); const request = require('node-superfetch'); const { magikToBuffer } = require('../../util/Util'); diff --git a/commands/edit-image/invert.js b/commands/edit-image/invert.js index 3578a3eb..b774f2a7 100644 --- a/commands/edit-image/invert.js +++ b/commands/edit-image/invert.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const { invert } = require('../../util/Canvas'); diff --git a/commands/edit-image/lego-icon.js b/commands/edit-image/lego-icon.js index edece95e..4088305d 100644 --- a/commands/edit-image/lego-icon.js +++ b/commands/edit-image/lego-icon.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-image/liquid-rescale.js b/commands/edit-image/liquid-rescale.js index 07b7fe27..9122ed1d 100644 --- a/commands/edit-image/liquid-rescale.js +++ b/commands/edit-image/liquid-rescale.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const gm = require('gm').subClass({ imageMagick: true }); const request = require('node-superfetch'); const { magikToBuffer } = require('../../util/Util'); diff --git a/commands/edit-image/minecraft-skin.js b/commands/edit-image/minecraft-skin.js index 3f774e18..f9900850 100644 --- a/commands/edit-image/minecraft-skin.js +++ b/commands/edit-image/minecraft-skin.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { list } = require('../../util/Util'); const types = ['face', 'front', 'frontfull', 'head', 'bust', 'full', 'skin']; diff --git a/commands/edit-image/mirror.js b/commands/edit-image/mirror.js index 7e170d6b..3576b92c 100644 --- a/commands/edit-image/mirror.js +++ b/commands/edit-image/mirror.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const { list } = require('../../util/Util'); diff --git a/commands/edit-image/motion-blur.js b/commands/edit-image/motion-blur.js index e767ccdd..b269f1f7 100644 --- a/commands/edit-image/motion-blur.js +++ b/commands/edit-image/motion-blur.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const { motionBlur } = require('../../util/Canvas'); diff --git a/commands/edit-image/needs-more-jpeg.js b/commands/edit-image/needs-more-jpeg.js index e09ee0f3..41bbcf29 100644 --- a/commands/edit-image/needs-more-jpeg.js +++ b/commands/edit-image/needs-more-jpeg.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); diff --git a/commands/edit-image/noise.js b/commands/edit-image/noise.js index 05f8dec2..8a2758d3 100644 --- a/commands/edit-image/noise.js +++ b/commands/edit-image/noise.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const gm = require('gm').subClass({ imageMagick: true }); const request = require('node-superfetch'); const { list, magikToBuffer } = require('../../util/Util'); diff --git a/commands/edit-image/oil-painting.js b/commands/edit-image/oil-painting.js index dd5ee9ff..dc0bcfd6 100644 --- a/commands/edit-image/oil-painting.js +++ b/commands/edit-image/oil-painting.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const gm = require('gm').subClass({ imageMagick: true }); const request = require('node-superfetch'); const { magikToBuffer } = require('../../util/Util'); diff --git a/commands/edit-image/pet.js b/commands/edit-image/pet.js index 27f31298..5cb0f32c 100644 --- a/commands/edit-image/pet.js +++ b/commands/edit-image/pet.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const GIFEncoder = require('gifencoder'); const request = require('node-superfetch'); diff --git a/commands/edit-image/pixelize.js b/commands/edit-image/pixelize.js index 284283fe..921b86c3 100644 --- a/commands/edit-image/pixelize.js +++ b/commands/edit-image/pixelize.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const { pixelize } = require('../../util/Canvas'); diff --git a/commands/edit-image/pokemon-fusion.js b/commands/edit-image/pokemon-fusion.js index 8cb34aac..e0aa9360 100644 --- a/commands/edit-image/pokemon-fusion.js +++ b/commands/edit-image/pokemon-fusion.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const pokemon = require('../../assets/json/pokemon-fusion'); const { firstUpperCase } = require('../../util/Util'); const pokeKeys = Object.keys(pokemon); diff --git a/commands/edit-image/police-tape.js b/commands/edit-image/police-tape.js index 66d1640b..476577cb 100644 --- a/commands/edit-image/police-tape.js +++ b/commands/edit-image/police-tape.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-image/rainbow.js b/commands/edit-image/rainbow.js index e849be2c..d031a708 100644 --- a/commands/edit-image/rainbow.js +++ b/commands/edit-image/rainbow.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-image/rejected.js b/commands/edit-image/rejected.js index ca2ef964..7997986f 100644 --- a/commands/edit-image/rejected.js +++ b/commands/edit-image/rejected.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-image/resize.js b/commands/edit-image/resize.js index b1b5d413..7d84a446 100644 --- a/commands/edit-image/resize.js +++ b/commands/edit-image/resize.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); diff --git a/commands/edit-image/rotate.js b/commands/edit-image/rotate.js index 1aa00ed2..5424f255 100644 --- a/commands/edit-image/rotate.js +++ b/commands/edit-image/rotate.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); diff --git a/commands/edit-image/sepia.js b/commands/edit-image/sepia.js index 2214b59e..da97de0c 100644 --- a/commands/edit-image/sepia.js +++ b/commands/edit-image/sepia.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const { sepia } = require('../../util/Canvas'); diff --git a/commands/edit-image/shake.js b/commands/edit-image/shake.js index b3773da6..b5eb61b3 100644 --- a/commands/edit-image/shake.js +++ b/commands/edit-image/shake.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const GIFEncoder = require('gifencoder'); const request = require('node-superfetch'); diff --git a/commands/edit-image/silhouette.js b/commands/edit-image/silhouette.js index e2be783c..2bd10656 100644 --- a/commands/edit-image/silhouette.js +++ b/commands/edit-image/silhouette.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const { silhouette } = require('../../util/Canvas'); diff --git a/commands/edit-image/simp.js b/commands/edit-image/simp.js index 8d20ddc4..18a83f33 100644 --- a/commands/edit-image/simp.js +++ b/commands/edit-image/simp.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-image/sip.js b/commands/edit-image/sip.js index af97f080..05b29188 100644 --- a/commands/edit-image/sip.js +++ b/commands/edit-image/sip.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-image/sketch.js b/commands/edit-image/sketch.js index 8941e13b..bd061ffc 100644 --- a/commands/edit-image/sketch.js +++ b/commands/edit-image/sketch.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const gm = require('gm').subClass({ imageMagick: true }); const request = require('node-superfetch'); const { magikToBuffer } = require('../../util/Util'); diff --git a/commands/edit-image/snapchat.js b/commands/edit-image/snapchat.js index 8f26baf8..c65ee36c 100644 --- a/commands/edit-image/snapchat.js +++ b/commands/edit-image/snapchat.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); diff --git a/commands/edit-image/snapcode.js b/commands/edit-image/snapcode.js index a989dc90..e7e11fda 100644 --- a/commands/edit-image/snapcode.js +++ b/commands/edit-image/snapcode.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class SnapcodeCommand extends Command { diff --git a/commands/edit-image/spotify-now-playing.js b/commands/edit-image/spotify-now-playing.js index 7c9dc260..60a49844 100644 --- a/commands/edit-image/spotify-now-playing.js +++ b/commands/edit-image/spotify-now-playing.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-image/square.js b/commands/edit-image/square.js index 1da38fc2..043aff77 100644 --- a/commands/edit-image/square.js +++ b/commands/edit-image/square.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); diff --git a/commands/edit-image/squish.js b/commands/edit-image/squish.js index 2db368c0..f5742ab5 100644 --- a/commands/edit-image/squish.js +++ b/commands/edit-image/squish.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const gm = require('gm').subClass({ imageMagick: true }); const request = require('node-superfetch'); const { magikToBuffer } = require('../../util/Util'); diff --git a/commands/edit-image/steam-card.js b/commands/edit-image/steam-card.js index 699fb426..e4e7850b 100644 --- a/commands/edit-image/steam-card.js +++ b/commands/edit-image/steam-card.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-image/subtitle.js b/commands/edit-image/subtitle.js index 5ca477e5..4808bd39 100644 --- a/commands/edit-image/subtitle.js +++ b/commands/edit-image/subtitle.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-image/swirl.js b/commands/edit-image/swirl.js index eb69fb82..bacfd3a9 100644 --- a/commands/edit-image/swirl.js +++ b/commands/edit-image/swirl.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const gm = require('gm').subClass({ imageMagick: true }); const request = require('node-superfetch'); const { magikToBuffer } = require('../../util/Util'); diff --git a/commands/edit-image/tint.js b/commands/edit-image/tint.js index c864d6bc..e998cc9e 100644 --- a/commands/edit-image/tint.js +++ b/commands/edit-image/tint.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const { drawImageWithTint } = require('../../util/Canvas'); diff --git a/commands/edit-image/trainer-card.js b/commands/edit-image/trainer-card.js index 17ce52ad..25f84fb2 100644 --- a/commands/edit-image/trainer-card.js +++ b/commands/edit-image/trainer-card.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { stripIndents } = require('common-tags'); const { list } = require('../../util/Util'); diff --git a/commands/edit-image/vignette.js b/commands/edit-image/vignette.js index d20f2b1c..6b81d2e6 100644 --- a/commands/edit-image/vignette.js +++ b/commands/edit-image/vignette.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const { vignette } = require('../../util/Canvas'); diff --git a/commands/edit-image/wanted.js b/commands/edit-image/wanted.js index 775c3ca6..e86a5252 100644 --- a/commands/edit-image/wanted.js +++ b/commands/edit-image/wanted.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-image/wild-pokemon.js b/commands/edit-image/wild-pokemon.js index b483af28..b790bd41 100644 --- a/commands/edit-image/wild-pokemon.js +++ b/commands/edit-image/wild-pokemon.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-image/you-died.js b/commands/edit-image/you-died.js index 02c7f94b..5b9cc01b 100644 --- a/commands/edit-image/you-died.js +++ b/commands/edit-image/you-died.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-image/yu-gi-oh-gen.js b/commands/edit-image/yu-gi-oh-gen.js index ec5ad4ce..58df8e78 100644 --- a/commands/edit-image/yu-gi-oh-gen.js +++ b/commands/edit-image/yu-gi-oh-gen.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-meme/3000-years.js b/commands/edit-meme/3000-years.js index 92389755..177c4542 100644 --- a/commands/edit-meme/3000-years.js +++ b/commands/edit-meme/3000-years.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-meme/alert.js b/commands/edit-meme/alert.js index 1add196e..cbef1b3f 100644 --- a/commands/edit-meme/alert.js +++ b/commands/edit-meme/alert.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-meme/bart-chalkboard.js b/commands/edit-meme/bart-chalkboard.js index e0a4287b..c98e020b 100644 --- a/commands/edit-meme/bart-chalkboard.js +++ b/commands/edit-meme/bart-chalkboard.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { shortenText } = require('../../util/Canvas'); diff --git a/commands/edit-meme/be-like-bill.js b/commands/edit-meme/be-like-bill.js index 360355d1..1401687f 100644 --- a/commands/edit-meme/be-like-bill.js +++ b/commands/edit-meme/be-like-bill.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const { stripIndents } = require('common-tags'); const path = require('path'); diff --git a/commands/edit-meme/beautiful.js b/commands/edit-meme/beautiful.js index eb97fc76..1805a4b1 100644 --- a/commands/edit-meme/beautiful.js +++ b/commands/edit-meme/beautiful.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-meme/boardroom-meeting.js b/commands/edit-meme/boardroom-meeting.js index fd517450..8c6ac7f6 100644 --- a/commands/edit-meme/boardroom-meeting.js +++ b/commands/edit-meme/boardroom-meeting.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); diff --git a/commands/edit-meme/bottom-text.js b/commands/edit-meme/bottom-text.js index a7ff90fa..2f444030 100644 --- a/commands/edit-meme/bottom-text.js +++ b/commands/edit-meme/bottom-text.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class BottomTextCommand extends Command { constructor(client) { diff --git a/commands/edit-meme/catch.js b/commands/edit-meme/catch.js index 3c8af4c5..d66da7f2 100644 --- a/commands/edit-meme/catch.js +++ b/commands/edit-meme/catch.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { delay } = require('../../util/Util'); diff --git a/commands/edit-meme/challenger.js b/commands/edit-meme/challenger.js index 34213db7..a9d1205d 100644 --- a/commands/edit-meme/challenger.js +++ b/commands/edit-meme/challenger.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-meme/change-my-mind.js b/commands/edit-meme/change-my-mind.js index 9d47df4a..de6046a9 100644 --- a/commands/edit-meme/change-my-mind.js +++ b/commands/edit-meme/change-my-mind.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-meme/chi-idea.js b/commands/edit-meme/chi-idea.js index 224404d6..8de71926 100644 --- a/commands/edit-meme/chi-idea.js +++ b/commands/edit-meme/chi-idea.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-meme/crush.js b/commands/edit-meme/crush.js index 3d414ce3..4c6d0e71 100644 --- a/commands/edit-meme/crush.js +++ b/commands/edit-meme/crush.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-meme/cursed-sponge.js b/commands/edit-meme/cursed-sponge.js index 40e132b4..37f4fe78 100644 --- a/commands/edit-meme/cursed-sponge.js +++ b/commands/edit-meme/cursed-sponge.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); diff --git a/commands/edit-meme/dear-liberals.js b/commands/edit-meme/dear-liberals.js index b96a402e..109d1b44 100644 --- a/commands/edit-meme/dear-liberals.js +++ b/commands/edit-meme/dear-liberals.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-meme/deep-fry.js b/commands/edit-meme/deep-fry.js index 1be08907..fa2e521a 100644 --- a/commands/edit-meme/deep-fry.js +++ b/commands/edit-meme/deep-fry.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const { desaturate, contrast } = require('../../util/Canvas'); diff --git a/commands/edit-meme/demotivational.js b/commands/edit-meme/demotivational.js index 5163cf59..f7170f25 100644 --- a/commands/edit-meme/demotivational.js +++ b/commands/edit-meme/demotivational.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const { shortenText, centerImagePart } = require('../../util/Canvas'); diff --git a/commands/edit-meme/dislike.js b/commands/edit-meme/dislike.js index 0f471815..7b98b553 100644 --- a/commands/edit-meme/dislike.js +++ b/commands/edit-meme/dislike.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-meme/distracted-boyfriend.js b/commands/edit-meme/distracted-boyfriend.js index d0bdc34a..538efa8c 100644 --- a/commands/edit-meme/distracted-boyfriend.js +++ b/commands/edit-meme/distracted-boyfriend.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-meme/drakeposting.js b/commands/edit-meme/drakeposting.js index c8eb9963..1a2bb831 100644 --- a/commands/edit-meme/drakeposting.js +++ b/commands/edit-meme/drakeposting.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-meme/edd-facts-book.js b/commands/edit-meme/edd-facts-book.js index a0daa5d0..ad55bfce 100644 --- a/commands/edit-meme/edd-facts-book.js +++ b/commands/edit-meme/edd-facts-book.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-meme/enslaved.js b/commands/edit-meme/enslaved.js index 4a20b612..fc86b243 100644 --- a/commands/edit-meme/enslaved.js +++ b/commands/edit-meme/enslaved.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-meme/food-broke.js b/commands/edit-meme/food-broke.js index e6021d82..964dda68 100644 --- a/commands/edit-meme/food-broke.js +++ b/commands/edit-meme/food-broke.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-meme/for-five-hours.js b/commands/edit-meme/for-five-hours.js index 5cb115b7..16ac7790 100644 --- a/commands/edit-meme/for-five-hours.js +++ b/commands/edit-meme/for-five-hours.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-meme/genie-rules.js b/commands/edit-meme/genie-rules.js index 0831aebe..dc490e62 100644 --- a/commands/edit-meme/genie-rules.js +++ b/commands/edit-meme/genie-rules.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-meme/girl-worth-fighting-for.js b/commands/edit-meme/girl-worth-fighting-for.js index 7d4e1530..08f4b47b 100644 --- a/commands/edit-meme/girl-worth-fighting-for.js +++ b/commands/edit-meme/girl-worth-fighting-for.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-meme/gru-plan.js b/commands/edit-meme/gru-plan.js index 05ad7b4c..c7d4b0c5 100644 --- a/commands/edit-meme/gru-plan.js +++ b/commands/edit-meme/gru-plan.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-meme/i-fear-no-man.js b/commands/edit-meme/i-fear-no-man.js index 6f35bbe3..fe365a54 100644 --- a/commands/edit-meme/i-fear-no-man.js +++ b/commands/edit-meme/i-fear-no-man.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-meme/if-those-kids-could-read.js b/commands/edit-meme/if-those-kids-could-read.js index 5ba4066b..e610c690 100644 --- a/commands/edit-meme/if-those-kids-could-read.js +++ b/commands/edit-meme/if-those-kids-could-read.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-meme/kyon-gun.js b/commands/edit-meme/kyon-gun.js index cc2fe3f6..0747fe9f 100644 --- a/commands/edit-meme/kyon-gun.js +++ b/commands/edit-meme/kyon-gun.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-meme/like.js b/commands/edit-meme/like.js index 3607469d..b64f6861 100644 --- a/commands/edit-meme/like.js +++ b/commands/edit-meme/like.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-meme/lisa-presentation.js b/commands/edit-meme/lisa-presentation.js index 579171a5..1c7a3216 100644 --- a/commands/edit-meme/lisa-presentation.js +++ b/commands/edit-meme/lisa-presentation.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-meme/look-at-this-photograph.js b/commands/edit-meme/look-at-this-photograph.js index 43faf492..d648f33f 100644 --- a/commands/edit-meme/look-at-this-photograph.js +++ b/commands/edit-meme/look-at-this-photograph.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-meme/look-what-karen-have.js b/commands/edit-meme/look-what-karen-have.js index dbcb03ea..0d6c8a9c 100644 --- a/commands/edit-meme/look-what-karen-have.js +++ b/commands/edit-meme/look-what-karen-have.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-meme/mario-bros-views.js b/commands/edit-meme/mario-bros-views.js index 6edacd1c..7acd5b76 100644 --- a/commands/edit-meme/mario-bros-views.js +++ b/commands/edit-meme/mario-bros-views.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-meme/meme-gen.js b/commands/edit-meme/meme-gen.js index 18081f7a..72e2c128 100644 --- a/commands/edit-meme/meme-gen.js +++ b/commands/edit-meme/meme-gen.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-meme/metamorphosis.js b/commands/edit-meme/metamorphosis.js index a4e89abe..9648d354 100644 --- a/commands/edit-meme/metamorphosis.js +++ b/commands/edit-meme/metamorphosis.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-meme/my-collection-grows.js b/commands/edit-meme/my-collection-grows.js index 8cd70147..f8d3e666 100644 --- a/commands/edit-meme/my-collection-grows.js +++ b/commands/edit-meme/my-collection-grows.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-meme/new-password.js b/commands/edit-meme/new-password.js index 0217eed9..6737c5ea 100644 --- a/commands/edit-meme/new-password.js +++ b/commands/edit-meme/new-password.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { shortenText } = require('../../util/Canvas'); diff --git a/commands/edit-meme/nike-ad.js b/commands/edit-meme/nike-ad.js index fa023661..ca9d5ace 100644 --- a/commands/edit-meme/nike-ad.js +++ b/commands/edit-meme/nike-ad.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-meme/panik-kalm-panik.js b/commands/edit-meme/panik-kalm-panik.js index 1688f051..0358814b 100644 --- a/commands/edit-meme/panik-kalm-panik.js +++ b/commands/edit-meme/panik-kalm-panik.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-meme/phoebe-teaching-joey.js b/commands/edit-meme/phoebe-teaching-joey.js index 203085c4..679a6d38 100644 --- a/commands/edit-meme/phoebe-teaching-joey.js +++ b/commands/edit-meme/phoebe-teaching-joey.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const coord = [ diff --git a/commands/edit-meme/pills.js b/commands/edit-meme/pills.js index 2aa1b222..d4ad0311 100644 --- a/commands/edit-meme/pills.js +++ b/commands/edit-meme/pills.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-meme/plankton-plan.js b/commands/edit-meme/plankton-plan.js index fb38f055..dd904c84 100644 --- a/commands/edit-meme/plankton-plan.js +++ b/commands/edit-meme/plankton-plan.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-meme/raw.js b/commands/edit-meme/raw.js index d33e72d5..dfb1b286 100644 --- a/commands/edit-meme/raw.js +++ b/commands/edit-meme/raw.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); diff --git a/commands/edit-meme/reaction-meme.js b/commands/edit-meme/reaction-meme.js index d8ee7500..20dcf469 100644 --- a/commands/edit-meme/reaction-meme.js +++ b/commands/edit-meme/reaction-meme.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-meme/scroll-of-truth.js b/commands/edit-meme/scroll-of-truth.js index 561893e0..5a539d8e 100644 --- a/commands/edit-meme/scroll-of-truth.js +++ b/commands/edit-meme/scroll-of-truth.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-meme/sexy-singles.js b/commands/edit-meme/sexy-singles.js index 65b29a5a..0d620544 100644 --- a/commands/edit-meme/sexy-singles.js +++ b/commands/edit-meme/sexy-singles.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-meme/skyrim-skill.js b/commands/edit-meme/skyrim-skill.js index 1e13cf91..f587a627 100644 --- a/commands/edit-meme/skyrim-skill.js +++ b/commands/edit-meme/skyrim-skill.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-meme/sonic-says.js b/commands/edit-meme/sonic-says.js index 8cb6ee3a..8da7dc41 100644 --- a/commands/edit-meme/sonic-says.js +++ b/commands/edit-meme/sonic-says.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-meme/sora-selfie.js b/commands/edit-meme/sora-selfie.js index ba59edc5..a5e76b88 100644 --- a/commands/edit-meme/sora-selfie.js +++ b/commands/edit-meme/sora-selfie.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-meme/sos.js b/commands/edit-meme/sos.js index 9bc7e0fe..8569dd82 100644 --- a/commands/edit-meme/sos.js +++ b/commands/edit-meme/sos.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); diff --git a/commands/edit-meme/spiderman-pointing.js b/commands/edit-meme/spiderman-pointing.js index 90a82865..6eef0556 100644 --- a/commands/edit-meme/spiderman-pointing.js +++ b/commands/edit-meme/spiderman-pointing.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-meme/spongebob-burn.js b/commands/edit-meme/spongebob-burn.js index e2e2e226..8845cd13 100644 --- a/commands/edit-meme/spongebob-burn.js +++ b/commands/edit-meme/spongebob-burn.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-meme/that-sign-wont-stop-me.js b/commands/edit-meme/that-sign-wont-stop-me.js index f2d0d84c..c443625d 100644 --- a/commands/edit-meme/that-sign-wont-stop-me.js +++ b/commands/edit-meme/that-sign-wont-stop-me.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-meme/this-guy.js b/commands/edit-meme/this-guy.js index 71144cbd..8184e3d6 100644 --- a/commands/edit-meme/this-guy.js +++ b/commands/edit-meme/this-guy.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-meme/thug-life.js b/commands/edit-meme/thug-life.js index cd68c832..1ceea3a0 100644 --- a/commands/edit-meme/thug-life.js +++ b/commands/edit-meme/thug-life.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-meme/to-be-continued.js b/commands/edit-meme/to-be-continued.js index 5e0c916f..b98c3857 100644 --- a/commands/edit-meme/to-be-continued.js +++ b/commands/edit-meme/to-be-continued.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-meme/tuxedo-pooh.js b/commands/edit-meme/tuxedo-pooh.js index b53e741b..7e2e27db 100644 --- a/commands/edit-meme/tuxedo-pooh.js +++ b/commands/edit-meme/tuxedo-pooh.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-meme/two-buttons.js b/commands/edit-meme/two-buttons.js index 39581dd0..04708c10 100644 --- a/commands/edit-meme/two-buttons.js +++ b/commands/edit-meme/two-buttons.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-meme/ugly.js b/commands/edit-meme/ugly.js index b99485ff..b22acd1f 100644 --- a/commands/edit-meme/ugly.js +++ b/commands/edit-meme/ugly.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-meme/ultimate-tattoo.js b/commands/edit-meme/ultimate-tattoo.js index 6db53c70..69aa311f 100644 --- a/commands/edit-meme/ultimate-tattoo.js +++ b/commands/edit-meme/ultimate-tattoo.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-meme/vietnam-flashbacks.js b/commands/edit-meme/vietnam-flashbacks.js index 71202721..9992d9c6 100644 --- a/commands/edit-meme/vietnam-flashbacks.js +++ b/commands/edit-meme/vietnam-flashbacks.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-meme/whiteboard.js b/commands/edit-meme/whiteboard.js index c7739bdb..0e4a0853 100644 --- a/commands/edit-meme/whiteboard.js +++ b/commands/edit-meme/whiteboard.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { wrapText } = require('../../util/Canvas'); diff --git a/commands/edit-meme/worse-than-hitler.js b/commands/edit-meme/worse-than-hitler.js index 194375e0..6ed39c18 100644 --- a/commands/edit-meme/worse-than-hitler.js +++ b/commands/edit-meme/worse-than-hitler.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-meme/worthless.js b/commands/edit-meme/worthless.js index 0b73f2a1..faed6ec5 100644 --- a/commands/edit-meme/worthless.js +++ b/commands/edit-meme/worthless.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/edit-number/currency.js b/commands/edit-number/currency.js index d59c70bb..77f0d432 100644 --- a/commands/edit-number/currency.js +++ b/commands/edit-number/currency.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { formatNumber } = require('../../util/Util'); diff --git a/commands/edit-number/final-grade.js b/commands/edit-number/final-grade.js index 327fbe06..ce155988 100644 --- a/commands/edit-number/final-grade.js +++ b/commands/edit-number/final-grade.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { above100, above92, above88, above80, below80 } = require('../../assets/json/final-grade'); module.exports = class FinalGradeCommand extends Command { diff --git a/commands/edit-number/format-number.js b/commands/edit-number/format-number.js index 5938d09c..177e39b1 100644 --- a/commands/edit-number/format-number.js +++ b/commands/edit-number/format-number.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { formatNumber } = require('../../util/Util'); module.exports = class FormatNumberCommand extends Command { diff --git a/commands/edit-number/gcd.js b/commands/edit-number/gcd.js index a1aa1ca5..636ea891 100644 --- a/commands/edit-number/gcd.js +++ b/commands/edit-number/gcd.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { gcd } = require('../../util/Util'); module.exports = class GcdCommand extends Command { diff --git a/commands/edit-number/grade.js b/commands/edit-number/grade.js index 4a446bbc..5d51c8ee 100644 --- a/commands/edit-number/grade.js +++ b/commands/edit-number/grade.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class GradeCommand extends Command { constructor(client) { diff --git a/commands/edit-number/gravity.js b/commands/edit-number/gravity.js index 31774d20..400dde31 100644 --- a/commands/edit-number/gravity.js +++ b/commands/edit-number/gravity.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { list, firstUpperCase, formatNumber } = require('../../util/Util'); const planets = require('../../assets/json/gravity'); diff --git a/commands/edit-number/math.js b/commands/edit-number/math.js index f8e797bc..a6f1f18d 100644 --- a/commands/edit-number/math.js +++ b/commands/edit-number/math.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const core = require('mathjs/number'); const math = core.create(core.all); const limitedEvaluate = math.evaluate; diff --git a/commands/edit-number/prime.js b/commands/edit-number/prime.js index d4beff84..a6dfdfb0 100644 --- a/commands/edit-number/prime.js +++ b/commands/edit-number/prime.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { formatNumber } = require('../../util/Util'); module.exports = class PrimeCommand extends Command { diff --git a/commands/edit-number/roman.js b/commands/edit-number/roman.js index 7662b0b9..514f1891 100644 --- a/commands/edit-number/roman.js +++ b/commands/edit-number/roman.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const numerals = require('../../assets/json/roman'); module.exports = class RomanCommand extends Command { diff --git a/commands/edit-number/scientific-notation.js b/commands/edit-number/scientific-notation.js index af90fe8f..a4c7df8e 100644 --- a/commands/edit-number/scientific-notation.js +++ b/commands/edit-number/scientific-notation.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class ScientificNotationCommand extends Command { constructor(client) { diff --git a/commands/edit-number/tax.js b/commands/edit-number/tax.js index 6a9d26ec..a939fa4f 100644 --- a/commands/edit-number/tax.js +++ b/commands/edit-number/tax.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { formatNumber } = require('../../util/Util'); module.exports = class TaxCommand extends Command { diff --git a/commands/edit-number/units.js b/commands/edit-number/units.js index a3fe2df0..e4459c26 100644 --- a/commands/edit-number/units.js +++ b/commands/edit-number/units.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const math = require('mathjs'); const { stripIndents } = require('common-tags'); const { formatNumber } = require('../../util/Util'); diff --git a/commands/edit-text/base64.js b/commands/edit-text/base64.js index 96fc2ecc..59c796c6 100644 --- a/commands/edit-text/base64.js +++ b/commands/edit-text/base64.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { list, base64 } = require('../../util/Util'); const modes = ['encode', 'decode']; diff --git a/commands/edit-text/binary.js b/commands/edit-text/binary.js index c9f0754e..47cd0a64 100644 --- a/commands/edit-text/binary.js +++ b/commands/edit-text/binary.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class BinaryCommand extends Command { constructor(client) { diff --git a/commands/edit-text/braille.js b/commands/edit-text/braille.js index 70c9bcb2..02889977 100644 --- a/commands/edit-text/braille.js +++ b/commands/edit-text/braille.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { letterTrans } = require('custom-translate'); const dictionary = require('../../assets/json/braille'); diff --git a/commands/edit-text/brony-speak.js b/commands/edit-text/brony-speak.js index bfd5b511..a6b25545 100644 --- a/commands/edit-text/brony-speak.js +++ b/commands/edit-text/brony-speak.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { wordTrans } = require('custom-translate'); const dictionary = require('../../assets/json/brony-speak'); diff --git a/commands/edit-text/clap.js b/commands/edit-text/clap.js index 7f0e2d06..6a6ce600 100644 --- a/commands/edit-text/clap.js +++ b/commands/edit-text/clap.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class ClapCommand extends Command { constructor(client) { diff --git a/commands/edit-text/cow-say.js b/commands/edit-text/cow-say.js index e0b8fa63..8e4e1313 100644 --- a/commands/edit-text/cow-say.js +++ b/commands/edit-text/cow-say.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class CowSayCommand extends Command { diff --git a/commands/edit-text/cursive.js b/commands/edit-text/cursive.js index 35be0060..4fe7825a 100644 --- a/commands/edit-text/cursive.js +++ b/commands/edit-text/cursive.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { letterTrans } = require('custom-translate'); const dictionary = require('../../assets/json/cursive'); diff --git a/commands/edit-text/dvorak.js b/commands/edit-text/dvorak.js index 5e72ac37..690168c0 100644 --- a/commands/edit-text/dvorak.js +++ b/commands/edit-text/dvorak.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { letterTrans } = require('custom-translate'); const dictionary = require('../../assets/json/dvorak'); diff --git a/commands/edit-text/embed.js b/commands/edit-text/embed.js index 3ee9e35b..8a603610 100644 --- a/commands/edit-text/embed.js +++ b/commands/edit-text/embed.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); module.exports = class EmbedCommand extends Command { diff --git a/commands/edit-text/emojify.js b/commands/edit-text/emojify.js index af8390c0..f292685b 100644 --- a/commands/edit-text/emojify.js +++ b/commands/edit-text/emojify.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { letterTrans } = require('custom-translate'); const dictionary = require('../../assets/json/emojify'); diff --git a/commands/edit-text/fancy.js b/commands/edit-text/fancy.js index 39f5ffa1..ac474091 100644 --- a/commands/edit-text/fancy.js +++ b/commands/edit-text/fancy.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { letterTrans } = require('custom-translate'); const dictionary = require('../../assets/json/fancy'); diff --git a/commands/edit-text/hex.js b/commands/edit-text/hex.js index 8a117c41..3cadd965 100644 --- a/commands/edit-text/hex.js +++ b/commands/edit-text/hex.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class HexCommand extends Command { constructor(client) { diff --git a/commands/edit-text/html-decode.js b/commands/edit-text/html-decode.js index eb64b1e5..598be254 100644 --- a/commands/edit-text/html-decode.js +++ b/commands/edit-text/html-decode.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { decode: decodeHTML } = require('html-entities'); module.exports = class HtmlDecodeCommand extends Command { diff --git a/commands/edit-text/latlmes.js b/commands/edit-text/latlmes.js index de89a7fb..827e9a1b 100644 --- a/commands/edit-text/latlmes.js +++ b/commands/edit-text/latlmes.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class LatlmesCommand extends Command { constructor(client) { diff --git a/commands/edit-text/leet.js b/commands/edit-text/leet.js index f1bcf85b..62faaf13 100644 --- a/commands/edit-text/leet.js +++ b/commands/edit-text/leet.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const Leet = require('../../structures/Leet'); module.exports = class LeetCommand extends Command { diff --git a/commands/edit-text/lmgtfy.js b/commands/edit-text/lmgtfy.js index 05520034..9cc9bd8a 100644 --- a/commands/edit-text/lmgtfy.js +++ b/commands/edit-text/lmgtfy.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class LMGTFYCommand extends Command { constructor(client) { diff --git a/commands/edit-text/lolcat.js b/commands/edit-text/lolcat.js index 8c47d61f..2942f4fc 100644 --- a/commands/edit-text/lolcat.js +++ b/commands/edit-text/lolcat.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const cheerio = require('cheerio'); diff --git a/commands/edit-text/lowercase.js b/commands/edit-text/lowercase.js index 9adee54d..7da33a9c 100644 --- a/commands/edit-text/lowercase.js +++ b/commands/edit-text/lowercase.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class LowercaseCommand extends Command { constructor(client) { diff --git a/commands/edit-text/md5.js b/commands/edit-text/md5.js index b7cb182d..c9520833 100644 --- a/commands/edit-text/md5.js +++ b/commands/edit-text/md5.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { hash } = require('../../util/Util'); module.exports = class MD5Command extends Command { diff --git a/commands/edit-text/mocking.js b/commands/edit-text/mocking.js index e097a34b..1278b39e 100644 --- a/commands/edit-text/mocking.js +++ b/commands/edit-text/mocking.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MOCKING_EMOJI_ID, MOCKING_EMOJI_NAME } = process.env; module.exports = class MockingCommand extends Command { diff --git a/commands/edit-text/morse.js b/commands/edit-text/morse.js index e22003bf..a4652452 100644 --- a/commands/edit-text/morse.js +++ b/commands/edit-text/morse.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { letterTrans } = require('custom-translate'); const dictionary = require('../../assets/json/morse'); diff --git a/commands/edit-text/nobody-name.js b/commands/edit-text/nobody-name.js index 3f513243..dd78438c 100644 --- a/commands/edit-text/nobody-name.js +++ b/commands/edit-text/nobody-name.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { shuffle, firstUpperCase } = require('../../util/Util'); const forced = require('../../assets/json/nobody-name'); diff --git a/commands/edit-text/owo.js b/commands/edit-text/owo.js index 728bc71e..77714b56 100644 --- a/commands/edit-text/owo.js +++ b/commands/edit-text/owo.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const faces = ['(・\\`ω´・)', ';;w;;', 'owo', 'UwU', '>w<', '^w^']; module.exports = class OwOCommand extends Command { diff --git a/commands/edit-text/pig-latin.js b/commands/edit-text/pig-latin.js index 60e3022d..ab953981 100644 --- a/commands/edit-text/pig-latin.js +++ b/commands/edit-text/pig-latin.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class PigLatinCommand extends Command { constructor(client) { diff --git a/commands/edit-text/pirate.js b/commands/edit-text/pirate.js index fe1ec982..68846879 100644 --- a/commands/edit-text/pirate.js +++ b/commands/edit-text/pirate.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { wordTrans } = require('custom-translate'); const dictionary = require('../../assets/json/pirate'); diff --git a/commands/edit-text/repeat.js b/commands/edit-text/repeat.js index f1a3a492..2cf7aeeb 100644 --- a/commands/edit-text/repeat.js +++ b/commands/edit-text/repeat.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class RepeatCommand extends Command { constructor(client) { diff --git a/commands/edit-text/reverse.js b/commands/edit-text/reverse.js index 758e4fea..b0057ce4 100644 --- a/commands/edit-text/reverse.js +++ b/commands/edit-text/reverse.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class ReverseCommand extends Command { constructor(client) { diff --git a/commands/edit-text/romaji.js b/commands/edit-text/romaji.js index ea950001..c61ef121 100644 --- a/commands/edit-text/romaji.js +++ b/commands/edit-text/romaji.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const Kuroshiro = require('kuroshiro'); const KuromojiAnalyzer = require('kuroshiro-analyzer-kuromoji'); diff --git a/commands/edit-text/say.js b/commands/edit-text/say.js index 78e01e54..e12e056f 100644 --- a/commands/edit-text/say.js +++ b/commands/edit-text/say.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class SayCommand extends Command { constructor(client) { diff --git a/commands/edit-text/sha-1.js b/commands/edit-text/sha-1.js index 56f11c7a..99a7a7bb 100644 --- a/commands/edit-text/sha-1.js +++ b/commands/edit-text/sha-1.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { hash } = require('../../util/Util'); module.exports = class SHA1Command extends Command { diff --git a/commands/edit-text/sha-256.js b/commands/edit-text/sha-256.js index 948672e9..770fd014 100644 --- a/commands/edit-text/sha-256.js +++ b/commands/edit-text/sha-256.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { hash } = require('../../util/Util'); module.exports = class SHA256Command extends Command { diff --git a/commands/edit-text/ship-name.js b/commands/edit-text/ship-name.js index 1e445880..ad505cad 100644 --- a/commands/edit-text/ship-name.js +++ b/commands/edit-text/ship-name.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class ShipNameCommand extends Command { constructor(client) { diff --git a/commands/edit-text/shorten-url.js b/commands/edit-text/shorten-url.js index 22fae411..51b0cd12 100644 --- a/commands/edit-text/shorten-url.js +++ b/commands/edit-text/shorten-url.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { BITLY_KEY } = process.env; diff --git a/commands/edit-text/shuffle.js b/commands/edit-text/shuffle.js index 9a2ebd70..e23b5ab6 100644 --- a/commands/edit-text/shuffle.js +++ b/commands/edit-text/shuffle.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { shuffle } = require('../../util/Util'); module.exports = class ShuffleCommand extends Command { diff --git a/commands/edit-text/snake-speak.js b/commands/edit-text/snake-speak.js index b8d95d0e..c44a3fdb 100644 --- a/commands/edit-text/snake-speak.js +++ b/commands/edit-text/snake-speak.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class SnakeSpeakCommand extends Command { constructor(client) { diff --git a/commands/edit-text/spoiler-letter.js b/commands/edit-text/spoiler-letter.js index 2eae05a3..8b19cac3 100644 --- a/commands/edit-text/spoiler-letter.js +++ b/commands/edit-text/spoiler-letter.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class SpoilerLetterCommand extends Command { constructor(client) { diff --git a/commands/edit-text/superscript.js b/commands/edit-text/superscript.js index 014c0b7e..dc1f04fd 100644 --- a/commands/edit-text/superscript.js +++ b/commands/edit-text/superscript.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { letterTrans } = require('custom-translate'); const dictionary = require('../../assets/json/superscript'); diff --git a/commands/edit-text/tebahpla.js b/commands/edit-text/tebahpla.js index 8d5d472e..920d39e6 100644 --- a/commands/edit-text/tebahpla.js +++ b/commands/edit-text/tebahpla.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { letterTrans } = require('custom-translate'); const dictionary = require('../../assets/json/tebahpla'); diff --git a/commands/edit-text/temmie.js b/commands/edit-text/temmie.js index 051321b2..269979ce 100644 --- a/commands/edit-text/temmie.js +++ b/commands/edit-text/temmie.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { wordTrans } = require('custom-translate'); const dictionary = require('../../assets/json/temmie'); diff --git a/commands/edit-text/translate.js b/commands/edit-text/translate.js index 6da7e72f..c7d49be6 100644 --- a/commands/edit-text/translate.js +++ b/commands/edit-text/translate.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const translate = require('@vitalets/google-translate-api'); const { list } = require('../../util/Util'); diff --git a/commands/edit-text/txt.js b/commands/edit-text/txt.js index 096a54cf..3a33e8a6 100644 --- a/commands/edit-text/txt.js +++ b/commands/edit-text/txt.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class TxtCommand extends Command { constructor(client) { diff --git a/commands/edit-text/unspoiler.js b/commands/edit-text/unspoiler.js index 9deebf76..296df816 100644 --- a/commands/edit-text/unspoiler.js +++ b/commands/edit-text/unspoiler.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class UnspoilerCommand extends Command { constructor(client) { diff --git a/commands/edit-text/uppercase.js b/commands/edit-text/uppercase.js index 421bf36a..887000b0 100644 --- a/commands/edit-text/uppercase.js +++ b/commands/edit-text/uppercase.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class UppercaseCommand extends Command { constructor(client) { diff --git a/commands/edit-text/upside-down.js b/commands/edit-text/upside-down.js index 8cdd0ffb..75caf474 100644 --- a/commands/edit-text/upside-down.js +++ b/commands/edit-text/upside-down.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { letterTrans } = require('custom-translate'); const dictionary = require('../../assets/json/upside-down'); diff --git a/commands/edit-text/url-decode.js b/commands/edit-text/url-decode.js index 10580ac3..13e7fe67 100644 --- a/commands/edit-text/url-decode.js +++ b/commands/edit-text/url-decode.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class URLDecodeCommand extends Command { constructor(client) { diff --git a/commands/edit-text/url-encode.js b/commands/edit-text/url-encode.js index b1535de7..924c3633 100644 --- a/commands/edit-text/url-encode.js +++ b/commands/edit-text/url-encode.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class URLEncodeCommand extends Command { constructor(client) { diff --git a/commands/edit-text/yoda.js b/commands/edit-text/yoda.js index 563d8aca..1e445d31 100644 --- a/commands/edit-text/yoda.js +++ b/commands/edit-text/yoda.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class YodaCommand extends Command { diff --git a/commands/edit-text/zalgo.js b/commands/edit-text/zalgo.js index 402eb462..76220f28 100644 --- a/commands/edit-text/zalgo.js +++ b/commands/edit-text/zalgo.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const zalgo = require('../../assets/json/zalgo'); module.exports = class ZalgoCommand extends Command { diff --git a/commands/events/anime-airing.js b/commands/events/anime-airing.js index c16cd9be..d694aa13 100644 --- a/commands/events/anime-airing.js +++ b/commands/events/anime-airing.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { stripIndents } = require('common-tags'); const moment = require('moment-timezone'); diff --git a/commands/events/apod.js b/commands/events/apod.js index 4a9f5149..c2ea3e5a 100644 --- a/commands/events/apod.js +++ b/commands/events/apod.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { MessageEmbed } = require('discord.js'); const { shorten } = require('../../util/Util'); diff --git a/commands/events/calendar.js b/commands/events/calendar.js index 1d1dd453..bc43be3d 100644 --- a/commands/events/calendar.js +++ b/commands/events/calendar.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const { firstUpperCase, isLeap } = require('../../util/Util'); const monthsWith30 = [4, 6, 9, 11]; diff --git a/commands/events/covid-19.js b/commands/events/covid-19.js index 95e1d6c9..76c2eb50 100644 --- a/commands/events/covid-19.js +++ b/commands/events/covid-19.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { MessageEmbed } = require('discord.js'); const { formatNumber } = require('../../util/Util'); diff --git a/commands/events/days-since.js b/commands/events/days-since.js index 87cb72c5..ced4fbc1 100644 --- a/commands/events/days-since.js +++ b/commands/events/days-since.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const moment = require('moment'); require('moment-duration-format'); diff --git a/commands/events/days-until.js b/commands/events/days-until.js index 8034f15b..f52565a2 100644 --- a/commands/events/days-until.js +++ b/commands/events/days-until.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const moment = require('moment'); require('moment-duration-format'); diff --git a/commands/events/doomsday-clock.js b/commands/events/doomsday-clock.js index e4ec29d7..6fff068f 100644 --- a/commands/events/doomsday-clock.js +++ b/commands/events/doomsday-clock.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { decode: decodeHTML } = require('html-entities'); const { MessageEmbed } = require('discord.js'); diff --git a/commands/events/friday-the-13th.js b/commands/events/friday-the-13th.js index 7b581b3e..33d63ec2 100644 --- a/commands/events/friday-the-13th.js +++ b/commands/events/friday-the-13th.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class FridayThe13thCommand extends Command { constructor(client) { diff --git a/commands/events/google-doodle.js b/commands/events/google-doodle.js index 20016b5c..89cfe2f7 100644 --- a/commands/events/google-doodle.js +++ b/commands/events/google-doodle.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const moment = require('moment'); diff --git a/commands/events/holidays.js b/commands/events/holidays.js index 43eef3cd..aced1963 100644 --- a/commands/events/holidays.js +++ b/commands/events/holidays.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { list, today, tomorrow } = require('../../util/Util'); const { GOOGLE_KEY, GOOGLE_CALENDAR_ID, PERSONAL_GOOGLE_CALENDAR_ID } = process.env; diff --git a/commands/events/horoscope.js b/commands/events/horoscope.js index f8c0ed74..082d9188 100644 --- a/commands/events/horoscope.js +++ b/commands/events/horoscope.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const cheerio = require('cheerio'); diff --git a/commands/events/humble-bundle.js b/commands/events/humble-bundle.js index a005458f..1e16e962 100644 --- a/commands/events/humble-bundle.js +++ b/commands/events/humble-bundle.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { stripIndents } = require('common-tags'); diff --git a/commands/events/is-leap.js b/commands/events/is-leap.js index 0e22fc85..5f526fc2 100644 --- a/commands/events/is-leap.js +++ b/commands/events/is-leap.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { isLeap } = require('../../util/Util'); module.exports = class IsLeapCommand extends Command { diff --git a/commands/events/is-tuesday.js b/commands/events/is-tuesday.js index 3805cfa6..646d6d7c 100644 --- a/commands/events/is-tuesday.js +++ b/commands/events/is-tuesday.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class IsTuesdayCommand extends Command { constructor(client) { diff --git a/commands/events/iss.js b/commands/events/iss.js index 1425d0d2..db980c54 100644 --- a/commands/events/iss.js +++ b/commands/events/iss.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class IssCommand extends Command { diff --git a/commands/events/neko-atsume-password.js b/commands/events/neko-atsume-password.js index 92c3104a..ca9b81cf 100644 --- a/commands/events/neko-atsume-password.js +++ b/commands/events/neko-atsume-password.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { stripIndents } = require('common-tags'); const moment = require('moment'); diff --git a/commands/events/people-in-space.js b/commands/events/people-in-space.js index 8fa003f9..01eda9b1 100644 --- a/commands/events/people-in-space.js +++ b/commands/events/people-in-space.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { MessageEmbed } = require('discord.js'); diff --git a/commands/events/time.js b/commands/events/time.js index b8498baf..d15dae71 100644 --- a/commands/events/time.js +++ b/commands/events/time.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const moment = require('moment-timezone'); const { firstUpperCase } = require('../../util/Util'); diff --git a/commands/events/today-in-history.js b/commands/events/today-in-history.js index 60e2c028..cf0b7ebc 100644 --- a/commands/events/today-in-history.js +++ b/commands/events/today-in-history.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const { embedURL } = require('../../util/Util'); diff --git a/commands/events/us-election.js b/commands/events/us-election.js index cea706f2..5b4f02f3 100644 --- a/commands/events/us-election.js +++ b/commands/events/us-election.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { stripIndents } = require('common-tags'); const year = 2020; diff --git a/commands/events/word-of-the-day.js b/commands/events/word-of-the-day.js index 3fff7b95..a1e39c3b 100644 --- a/commands/events/word-of-the-day.js +++ b/commands/events/word-of-the-day.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const cheerio = require('cheerio'); const { stripIndents } = require('common-tags'); diff --git a/commands/events/year-progress.js b/commands/events/year-progress.js index 917ce8fc..3d24711c 100644 --- a/commands/events/year-progress.js +++ b/commands/events/year-progress.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class YearProgressCommand extends Command { constructor(client) { diff --git a/commands/games-mp/apples-to-apples.js b/commands/games-mp/apples-to-apples.js index 8eeb81eb..5b7d96d4 100644 --- a/commands/games-mp/apples-to-apples.js +++ b/commands/games-mp/apples-to-apples.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { escapeMarkdown } = require('discord.js'); const { stripIndents } = require('common-tags'); const { shuffle } = require('../../util/Util'); diff --git a/commands/games-mp/balloon-pop.js b/commands/games-mp/balloon-pop.js index c01c5cad..c57520f4 100644 --- a/commands/games-mp/balloon-pop.js +++ b/commands/games-mp/balloon-pop.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const Collection = require('@discordjs/collection'); const { randomRange, verify, awaitPlayers } = require('../../util/Util'); diff --git a/commands/games-mp/battle.js b/commands/games-mp/battle.js index b6448b45..f94be43e 100644 --- a/commands/games-mp/battle.js +++ b/commands/games-mp/battle.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const Battle = require('../../structures/battle/Battle'); const { randomRange, verify } = require('../../util/Util'); diff --git a/commands/games-mp/bingo.js b/commands/games-mp/bingo.js index bc2a66d6..6a3b9f45 100644 --- a/commands/games-mp/bingo.js +++ b/commands/games-mp/bingo.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const Collection = require('@discordjs/collection'); const { stripIndents } = require('common-tags'); const { awaitPlayers, reactIfAble } = require('../../util/Util'); diff --git a/commands/games-mp/car-race.js b/commands/games-mp/car-race.js index 83e874b7..05a161f8 100644 --- a/commands/games-mp/car-race.js +++ b/commands/games-mp/car-race.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const { stripIndents } = require('common-tags'); diff --git a/commands/games-mp/cards-against-humanity.js b/commands/games-mp/cards-against-humanity.js index 81d5f241..c5ecb5d8 100644 --- a/commands/games-mp/cards-against-humanity.js +++ b/commands/games-mp/cards-against-humanity.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { escapeMarkdown } = require('discord.js'); const { stripIndents } = require('common-tags'); const { shuffle } = require('../../util/Util'); diff --git a/commands/games-mp/chess-delete.js b/commands/games-mp/chess-delete.js index 25109f9b..92af2190 100644 --- a/commands/games-mp/chess-delete.js +++ b/commands/games-mp/chess-delete.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class ChessDeleteCommand extends Command { constructor(client) { diff --git a/commands/games-mp/chess.js b/commands/games-mp/chess.js index 034dc4fa..3c471a60 100644 --- a/commands/games-mp/chess.js +++ b/commands/games-mp/chess.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const jsChess = require('js-chess-engine'); const { createCanvas, loadImage } = require('canvas'); const moment = require('moment'); diff --git a/commands/games-mp/connect-four.js b/commands/games-mp/connect-four.js index fd4e9aee..f89cb703 100644 --- a/commands/games-mp/connect-four.js +++ b/commands/games-mp/connect-four.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { Connect4AI } = require('connect4-ai'); const { stripIndents } = require('common-tags'); const emojiRegex = require('emoji-regex/RGI_Emoji.js'); diff --git a/commands/games-mp/cram.js b/commands/games-mp/cram.js index 60eaa785..4ae8640c 100644 --- a/commands/games-mp/cram.js +++ b/commands/games-mp/cram.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const { verify, list } = require('../../util/Util'); const colors = require('../../assets/json/domineering'); diff --git a/commands/games-mp/domineering.js b/commands/games-mp/domineering.js index a02e1b3b..0542fdda 100644 --- a/commands/games-mp/domineering.js +++ b/commands/games-mp/domineering.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const { verify, list } = require('../../util/Util'); const colors = require('../../assets/json/domineering'); diff --git a/commands/games-mp/dots-and-boxes.js b/commands/games-mp/dots-and-boxes.js index 171d2080..c43d669d 100644 --- a/commands/games-mp/dots-and-boxes.js +++ b/commands/games-mp/dots-and-boxes.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const { verify } = require('../../util/Util'); const squareIDs = [5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 17, 18, 20, 21, 22, 23]; diff --git a/commands/games-mp/emoji-emoji-revolution.js b/commands/games-mp/emoji-emoji-revolution.js index c62af077..abccd5e1 100644 --- a/commands/games-mp/emoji-emoji-revolution.js +++ b/commands/games-mp/emoji-emoji-revolution.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const { verify } = require('../../util/Util'); const emojis = ['⬆', '↗', '➡', '↘', '⬇', '↙', '⬅', '↖']; diff --git a/commands/games-mp/guesspionage.js b/commands/games-mp/guesspionage.js index 7e47c242..26da2ea7 100644 --- a/commands/games-mp/guesspionage.js +++ b/commands/games-mp/guesspionage.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const Collection = require('@discordjs/collection'); const { delay, awaitPlayers, reactIfAble } = require('../../util/Util'); diff --git a/commands/games-mp/gunfight.js b/commands/games-mp/gunfight.js index c9d847e3..2920a5a1 100644 --- a/commands/games-mp/gunfight.js +++ b/commands/games-mp/gunfight.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const { delay, randomRange, verify, fetchHSUserDisplay } = require('../../util/Util'); const words = ['fire', 'draw', 'shoot', 'bang', 'pull', 'boom']; diff --git a/commands/games-mp/imposter.js b/commands/games-mp/imposter.js index e492ab9a..8da3ea74 100644 --- a/commands/games-mp/imposter.js +++ b/commands/games-mp/imposter.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents, oneLine } = require('common-tags'); const Collection = require('@discordjs/collection'); const { delay, awaitPlayers, list, reactIfAble } = require('../../util/Util'); diff --git a/commands/games-mp/island.js b/commands/games-mp/island.js index 05980151..1ae70d47 100644 --- a/commands/games-mp/island.js +++ b/commands/games-mp/island.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const Collection = require('@discordjs/collection'); const { delay, awaitPlayers, reactIfAble } = require('../../util/Util'); diff --git a/commands/games-mp/jenga.js b/commands/games-mp/jenga.js index c0666250..dbe94d40 100644 --- a/commands/games-mp/jenga.js +++ b/commands/games-mp/jenga.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const { verify } = require('../../util/Util'); const nums = ['1️⃣', '2️⃣', '3️⃣', '4️⃣', '5️⃣', '6️⃣', '7️⃣', '8️⃣', '9️⃣', '🔟']; diff --git a/commands/games-mp/lie-swatter.js b/commands/games-mp/lie-swatter.js index 9582da03..70f514fd 100644 --- a/commands/games-mp/lie-swatter.js +++ b/commands/games-mp/lie-swatter.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { stripIndents } = require('common-tags'); const Collection = require('@discordjs/collection'); diff --git a/commands/games-mp/mafia.js b/commands/games-mp/mafia.js index 7b1b4aa0..19023715 100644 --- a/commands/games-mp/mafia.js +++ b/commands/games-mp/mafia.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const Game = require('../../structures/mafia/Game'); const { verify } = require('../../util/Util'); const storyCount = 21; diff --git a/commands/games-mp/nim.js b/commands/games-mp/nim.js index daf84abe..fb916265 100644 --- a/commands/games-mp/nim.js +++ b/commands/games-mp/nim.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const { verify } = require('../../util/Util'); const emoji = require('../../assets/json/nim'); diff --git a/commands/games-mp/obstruction.js b/commands/games-mp/obstruction.js index 80fe272a..7061ef8a 100644 --- a/commands/games-mp/obstruction.js +++ b/commands/games-mp/obstruction.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const { verify } = require('../../util/Util'); const blankEmoji = '⬜'; diff --git a/commands/games-mp/pick-a-number.js b/commands/games-mp/pick-a-number.js index 99d8528e..8abf7bc8 100644 --- a/commands/games-mp/pick-a-number.js +++ b/commands/games-mp/pick-a-number.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { verify } = require('../../util/Util'); const nums = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; diff --git a/commands/games-mp/poker.js b/commands/games-mp/poker.js index 39d0d1ba..8076748d 100644 --- a/commands/games-mp/poker.js +++ b/commands/games-mp/poker.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const Collection = require('@discordjs/collection'); const { Hand } = require('pokersolver'); const { stripIndents } = require('common-tags'); diff --git a/commands/games-mp/quiz-duel.js b/commands/games-mp/quiz-duel.js index 2d0999da..24848c2e 100644 --- a/commands/games-mp/quiz-duel.js +++ b/commands/games-mp/quiz-duel.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { stripIndents } = require('common-tags'); const Collection = require('@discordjs/collection'); diff --git a/commands/games-mp/russian-roulette.js b/commands/games-mp/russian-roulette.js index a944908b..53ede181 100644 --- a/commands/games-mp/russian-roulette.js +++ b/commands/games-mp/russian-roulette.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const Collection = require('@discordjs/collection'); const { stripIndents } = require('common-tags'); const { shuffle, verify, awaitPlayers, removeFromArray } = require('../../util/Util'); diff --git a/commands/games-mp/spam-war.js b/commands/games-mp/spam-war.js index b3dfe805..6a9d5539 100644 --- a/commands/games-mp/spam-war.js +++ b/commands/games-mp/spam-war.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { delay, verify } = require('../../util/Util'); module.exports = class SpamWarCommand extends Command { diff --git a/commands/games-mp/tic-tac-toe.js b/commands/games-mp/tic-tac-toe.js index 5bd5abb4..8a674d6d 100644 --- a/commands/games-mp/tic-tac-toe.js +++ b/commands/games-mp/tic-tac-toe.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const tictactoe = require('tictactoe-minimax-ai'); const { stripIndents } = require('common-tags'); const { verify } = require('../../util/Util'); diff --git a/commands/games-mp/typing-race.js b/commands/games-mp/typing-race.js index 89d36215..a61a6ca4 100644 --- a/commands/games-mp/typing-race.js +++ b/commands/games-mp/typing-race.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const { verify, fetchHSUserDisplay } = require('../../util/Util'); diff --git a/commands/games-mp/word-chain.js b/commands/games-mp/word-chain.js index 49a3a0b0..19b077f6 100644 --- a/commands/games-mp/word-chain.js +++ b/commands/games-mp/word-chain.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { stripIndents } = require('common-tags'); const { delay, verify } = require('../../util/Util'); diff --git a/commands/games-mp/word-spud.js b/commands/games-mp/word-spud.js index e0e3388e..7c7a52b4 100644 --- a/commands/games-mp/word-spud.js +++ b/commands/games-mp/word-spud.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const { verify } = require('../../util/Util'); const startWords = require('../../assets/json/word-list'); diff --git a/commands/games-sp/20-questions.js b/commands/games-sp/20-questions.js index f0f646a6..7c18350f 100644 --- a/commands/games-sp/20-questions.js +++ b/commands/games-sp/20-questions.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const cheerio = require('cheerio'); const { stripIndents } = require('common-tags'); diff --git a/commands/games-sp/akinator.js b/commands/games-sp/akinator.js index 83ba2e6b..d1207dbc 100644 --- a/commands/games-sp/akinator.js +++ b/commands/games-sp/akinator.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const { Aki, regions } = require('aki-api'); const { stripIndents } = require('common-tags'); diff --git a/commands/games-sp/anagramica.js b/commands/games-sp/anagramica.js index f6b4d7f9..258c24d6 100644 --- a/commands/games-sp/anagramica.js +++ b/commands/games-sp/anagramica.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const request = require('node-superfetch'); const { shuffle, reactIfAble, fetchHSUserDisplay } = require('../../util/Util'); diff --git a/commands/games-sp/anime-score.js b/commands/games-sp/anime-score.js index 0edff234..c57f2dec 100644 --- a/commands/games-sp/anime-score.js +++ b/commands/games-sp/anime-score.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const { stripIndents } = require('common-tags'); diff --git a/commands/games-sp/antidepressant-or-tolkien.js b/commands/games-sp/antidepressant-or-tolkien.js index 89fc9753..aca2cbac 100644 --- a/commands/games-sp/antidepressant-or-tolkien.js +++ b/commands/games-sp/antidepressant-or-tolkien.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const questions = require('../../assets/json/antidepressant-or-tolkien'); const answers = { diff --git a/commands/games-sp/blackjack.js b/commands/games-sp/blackjack.js index dea217de..8226adb3 100644 --- a/commands/games-sp/blackjack.js +++ b/commands/games-sp/blackjack.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const { verify } = require('../../util/Util'); const Deck = require('../../structures/cards/Deck'); diff --git a/commands/games-sp/box-choosing.js b/commands/games-sp/box-choosing.js index 96929526..f1c450a4 100644 --- a/commands/games-sp/box-choosing.js +++ b/commands/games-sp/box-choosing.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const { verify } = require('../../util/Util'); const script = require('../../assets/json/box-choosing'); diff --git a/commands/games-sp/bubble-wrap.js b/commands/games-sp/bubble-wrap.js index eb262a3f..a951e1f0 100644 --- a/commands/games-sp/bubble-wrap.js +++ b/commands/games-sp/bubble-wrap.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class BubbleWrapCommand extends Command { constructor(client) { diff --git a/commands/games-sp/captcha.js b/commands/games-sp/captcha.js index e5182b83..d20408a9 100644 --- a/commands/games-sp/captcha.js +++ b/commands/games-sp/captcha.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas } = require('canvas'); const pool = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ23456789'.split(''); diff --git a/commands/games-sp/chance.js b/commands/games-sp/chance.js index 167e0eca..2c5fe21e 100644 --- a/commands/games-sp/chance.js +++ b/commands/games-sp/chance.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class ChanceCommand extends Command { constructor(client) { diff --git a/commands/games-sp/doors.js b/commands/games-sp/doors.js index 2e9e4f29..9a30a626 100644 --- a/commands/games-sp/doors.js +++ b/commands/games-sp/doors.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const { verify } = require('../../util/Util'); const doors = [1, 2, 3]; diff --git a/commands/games-sp/fishy.js b/commands/games-sp/fishy.js index d17e3333..78b7ebf2 100644 --- a/commands/games-sp/fishy.js +++ b/commands/games-sp/fishy.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { randomRange } = require('../../util/Util'); const fishes = require('../../assets/json/fishy'); diff --git a/commands/games-sp/google-feud.js b/commands/games-sp/google-feud.js index 5ea62f86..ddc01b11 100644 --- a/commands/games-sp/google-feud.js +++ b/commands/games-sp/google-feud.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { MessageEmbed } = require('discord.js'); const { formatNumber, list } = require('../../util/Util'); diff --git a/commands/games-sp/guess-song.js b/commands/games-sp/guess-song.js index c5f94014..bbae4830 100644 --- a/commands/games-sp/guess-song.js +++ b/commands/games-sp/guess-song.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const cheerio = require('cheerio'); const { Readable } = require('stream'); diff --git a/commands/games-sp/hangman.js b/commands/games-sp/hangman.js index 9298143a..fc3eca3d 100644 --- a/commands/games-sp/hangman.js +++ b/commands/games-sp/hangman.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { stripIndents } = require('common-tags'); const words = require('../../assets/json/word-list'); diff --git a/commands/games-sp/hearing-test.js b/commands/games-sp/hearing-test.js index ebe1e8eb..bec791c7 100644 --- a/commands/games-sp/hearing-test.js +++ b/commands/games-sp/hearing-test.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const path = require('path'); const { stripIndents } = require('common-tags'); const { delay, verify } = require('../../util/Util'); diff --git a/commands/games-sp/horse-info.js b/commands/games-sp/horse-info.js index 5efbbd3d..f3dd8d34 100644 --- a/commands/games-sp/horse-info.js +++ b/commands/games-sp/horse-info.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const { formatTime } = require('../../util/Util'); const horses = require('../../assets/json/horse-race'); diff --git a/commands/games-sp/horse-race.js b/commands/games-sp/horse-race.js index 6111b5ac..33ef4b00 100644 --- a/commands/games-sp/horse-race.js +++ b/commands/games-sp/horse-race.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { stripIndents } = require('common-tags'); diff --git a/commands/games-sp/hunger-games.js b/commands/games-sp/hunger-games.js index d2aff4f0..c347df18 100644 --- a/commands/games-sp/hunger-games.js +++ b/commands/games-sp/hunger-games.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const { shuffle, removeDuplicates, verify } = require('../../util/Util'); const events = require('../../assets/json/hunger-games'); diff --git a/commands/games-sp/ib-hardcore-edition.js b/commands/games-sp/ib-hardcore-edition.js index b98c4f41..1601d2f0 100644 --- a/commands/games-sp/ib-hardcore-edition.js +++ b/commands/games-sp/ib-hardcore-edition.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class IbHardcoreEditionCommand extends Command { constructor(client) { diff --git a/commands/games-sp/jeopardy.js b/commands/games-sp/jeopardy.js index ab5ed5d6..cda40e37 100644 --- a/commands/games-sp/jeopardy.js +++ b/commands/games-sp/jeopardy.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { createCanvas } = require('canvas'); const path = require('path'); diff --git a/commands/games-sp/lottery.js b/commands/games-sp/lottery.js index 746adc4d..00f79658 100644 --- a/commands/games-sp/lottery.js +++ b/commands/games-sp/lottery.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const prizes = ['$0', '$2', '$4', '$10', '$500', '$1,000,000', 'the Jackpot']; diff --git a/commands/games-sp/mad-libs.js b/commands/games-sp/mad-libs.js index 352610f0..a1eab23d 100644 --- a/commands/games-sp/mad-libs.js +++ b/commands/games-sp/mad-libs.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const libs = require('../../assets/json/mad-libs'); module.exports = class MadLibsCommand extends Command { diff --git a/commands/games-sp/math-quiz.js b/commands/games-sp/math-quiz.js index 1e0b5432..0b7f8991 100644 --- a/commands/games-sp/math-quiz.js +++ b/commands/games-sp/math-quiz.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const { list } = require('../../util/Util'); const difficulties = ['baby', 'easy', 'medium', 'hard', 'extreme', 'impossible']; diff --git a/commands/games-sp/memory.js b/commands/games-sp/memory.js index 5d6c0520..c8bf497c 100644 --- a/commands/games-sp/memory.js +++ b/commands/games-sp/memory.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const { delay } = require('../../util/Util'); const directions = ['up', 'down', 'left', 'right']; diff --git a/commands/games-sp/minesweeper.js b/commands/games-sp/minesweeper.js index b252c5f2..5c5ccf61 100644 --- a/commands/games-sp/minesweeper.js +++ b/commands/games-sp/minesweeper.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const BombSweeper = require('bombsweeper.js'); const moment = require('moment'); require('moment-duration-format'); diff --git a/commands/games-sp/pokemon-advantage.js b/commands/games-sp/pokemon-advantage.js index 40095114..a34aad9b 100644 --- a/commands/games-sp/pokemon-advantage.js +++ b/commands/games-sp/pokemon-advantage.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const { stripIndents } = require('common-tags'); diff --git a/commands/games-sp/quiz.js b/commands/games-sp/quiz.js index 55711a16..c043cc96 100644 --- a/commands/games-sp/quiz.js +++ b/commands/games-sp/quiz.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const request = require('node-superfetch'); const { shuffle, list } = require('../../util/Util'); diff --git a/commands/games-sp/reaction-time.js b/commands/games-sp/reaction-time.js index 677ff1c6..a0670300 100644 --- a/commands/games-sp/reaction-time.js +++ b/commands/games-sp/reaction-time.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const { delay, randomRange, fetchHSUserDisplay } = require('../../util/Util'); const words = ['fire', 'draw', 'shoot', 'bang', 'pull', 'boom']; diff --git a/commands/games-sp/rock-paper-scissors.js b/commands/games-sp/rock-paper-scissors.js index 58c858ec..ad3c82d5 100644 --- a/commands/games-sp/rock-paper-scissors.js +++ b/commands/games-sp/rock-paper-scissors.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const choices = ['rock', 'paper', 'scissors']; module.exports = class RockPaperScissorsCommand extends Command { diff --git a/commands/games-sp/roulette.js b/commands/games-sp/roulette.js index a635d11a..a77da058 100644 --- a/commands/games-sp/roulette.js +++ b/commands/games-sp/roulette.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { oneLine } = require('common-tags'); const red = [1, 3, 5, 7, 9, 12, 14, 16, 18, 19, 21, 23, 25, 27, 30, 32, 34, 36]; const black = [2, 4, 6, 8, 10, 11, 13, 15, 17, 20, 22, 24, 26, 28, 29, 31, 33, 35]; diff --git a/commands/games-sp/slots.js b/commands/games-sp/slots.js index 178fbba1..ac68b57e 100644 --- a/commands/games-sp/slots.js +++ b/commands/games-sp/slots.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const slots = ['🍇', '🍊', '🍐', '🍒', '🍋', '🍌', '🔔']; diff --git a/commands/games-sp/sorting-hat.js b/commands/games-sp/sorting-hat.js index 6209ec9b..4e2ebc9f 100644 --- a/commands/games-sp/sorting-hat.js +++ b/commands/games-sp/sorting-hat.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const { shuffle } = require('../../util/Util'); const { questions, houses, descriptions } = require('../../assets/json/sorting-hat'); diff --git a/commands/games-sp/tarot.js b/commands/games-sp/tarot.js index dfeeb27a..d3b086de 100644 --- a/commands/games-sp/tarot.js +++ b/commands/games-sp/tarot.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { escapeMarkdown } = require('discord.js'); const { stripIndents } = require('common-tags'); const { list, verify } = require('../../util/Util'); diff --git a/commands/games-sp/the-game.js b/commands/games-sp/the-game.js index 5211924a..8a59bd7b 100644 --- a/commands/games-sp/the-game.js +++ b/commands/games-sp/the-game.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class TheGameCommand extends Command { constructor(client) { diff --git a/commands/games-sp/true-or-false.js b/commands/games-sp/true-or-false.js index b4ec3acb..15b040d4 100644 --- a/commands/games-sp/true-or-false.js +++ b/commands/games-sp/true-or-false.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const request = require('node-superfetch'); const { list } = require('../../util/Util'); diff --git a/commands/games-sp/typing-test.js b/commands/games-sp/typing-test.js index d3ef7b90..d07c7277 100644 --- a/commands/games-sp/typing-test.js +++ b/commands/games-sp/typing-test.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas } = require('canvas'); const { stripIndents } = require('common-tags'); const Diff = require('text-diff'); diff --git a/commands/games-sp/waldo.js b/commands/games-sp/waldo.js index 5a944057..66c89b14 100644 --- a/commands/games-sp/waldo.js +++ b/commands/games-sp/waldo.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { shuffle } = require('../../util/Util'); const waldos = require('../../assets/json/waldo'); diff --git a/commands/games-sp/whos-that-pokemon-cry.js b/commands/games-sp/whos-that-pokemon-cry.js index 2080245e..38854c5b 100644 --- a/commands/games-sp/whos-that-pokemon-cry.js +++ b/commands/games-sp/whos-that-pokemon-cry.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { reactIfAble } = require('../../util/Util'); module.exports = class WhosThatPokemonCryCommand extends Command { diff --git a/commands/games-sp/whos-that-pokemon.js b/commands/games-sp/whos-that-pokemon.js index 4df4b36c..fe45400f 100644 --- a/commands/games-sp/whos-that-pokemon.js +++ b/commands/games-sp/whos-that-pokemon.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); const { reactIfAble } = require('../../util/Util'); diff --git a/commands/games-sp/will-you-press-the-button.js b/commands/games-sp/will-you-press-the-button.js index bfd2deee..5371a518 100644 --- a/commands/games-sp/will-you-press-the-button.js +++ b/commands/games-sp/will-you-press-the-button.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { decode: decodeHTML } = require('html-entities'); const { stripIndents } = require('common-tags'); diff --git a/commands/games-sp/would-you-rather.js b/commands/games-sp/would-you-rather.js index f1ecf068..f9cef61b 100644 --- a/commands/games-sp/would-you-rather.js +++ b/commands/games-sp/would-you-rather.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { stripIndents } = require('common-tags'); const { formatNumber } = require('../../util/Util'); diff --git a/commands/info/avatar.js b/commands/info/avatar.js index 43ce0c0f..4f6b0ad2 100644 --- a/commands/info/avatar.js +++ b/commands/info/avatar.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const { embedURL } = require('../../util/Util'); const displayFmts = { diff --git a/commands/info/bot.js b/commands/info/bot.js index 5ceff07d..3c819e03 100644 --- a/commands/info/bot.js +++ b/commands/info/bot.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const moment = require('moment'); diff --git a/commands/info/channel.js b/commands/info/channel.js index 177723b9..3a2fc716 100644 --- a/commands/info/channel.js +++ b/commands/info/channel.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const moment = require('moment'); const { MessageEmbed } = require('discord.js'); const types = { diff --git a/commands/info/emoji-image.js b/commands/info/emoji-image.js index 134767f6..47fb4940 100644 --- a/commands/info/emoji-image.js +++ b/commands/info/emoji-image.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { GuildEmoji } = require('discord.js'); const twemoji = require('twemoji-parser'); const request = require('node-superfetch'); diff --git a/commands/info/emoji-list.js b/commands/info/emoji-list.js index cc65c1be..0edb64f8 100644 --- a/commands/info/emoji-list.js +++ b/commands/info/emoji-list.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { list } = require('../../util/Util'); const types = ['animated', 'regular']; diff --git a/commands/info/emoji-zip.js b/commands/info/emoji-zip.js index e366f5d6..66ab8263 100644 --- a/commands/info/emoji-zip.js +++ b/commands/info/emoji-zip.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const JSZip = require('jszip'); const { reactIfAble } = require('../../util/Util'); diff --git a/commands/info/emoji.js b/commands/info/emoji.js index 797383b4..ba23c97b 100644 --- a/commands/info/emoji.js +++ b/commands/info/emoji.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const moment = require('moment'); const { MessageEmbed } = require('discord.js'); diff --git a/commands/info/first-message.js b/commands/info/first-message.js index 2e49eee9..6fc393bf 100644 --- a/commands/info/first-message.js +++ b/commands/info/first-message.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); module.exports = class FirstMessageCommand extends Command { diff --git a/commands/info/id.js b/commands/info/id.js index 581bc0f6..5c16756c 100644 --- a/commands/info/id.js +++ b/commands/info/id.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class IDCommand extends Command { constructor(client) { diff --git a/commands/info/message-source.js b/commands/info/message-source.js index 1497588f..56543f59 100644 --- a/commands/info/message-source.js +++ b/commands/info/message-source.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { shorten } = require('../../util/Util'); module.exports = class MessageSourceCommand extends Command { diff --git a/commands/info/message.js b/commands/info/message.js index 0696e550..09b24c3f 100644 --- a/commands/info/message.js +++ b/commands/info/message.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); module.exports = class MessageCommand extends Command { diff --git a/commands/info/role.js b/commands/info/role.js index c17ab71f..3b9d1478 100644 --- a/commands/info/role.js +++ b/commands/info/role.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const moment = require('moment'); const { MessageEmbed } = require('discord.js'); const permissions = require('../../assets/json/permission-names'); diff --git a/commands/info/server-icon.js b/commands/info/server-icon.js index cd39cb5a..0034f9a0 100644 --- a/commands/info/server-icon.js +++ b/commands/info/server-icon.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const { embedURL } = require('../../util/Util'); const displayFmts = { diff --git a/commands/info/server.js b/commands/info/server.js index 0a95cad2..ee0622c3 100644 --- a/commands/info/server.js +++ b/commands/info/server.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const moment = require('moment'); const { MessageEmbed } = require('discord.js'); const { formatNumber } = require('../../util/Util'); diff --git a/commands/info/user.js b/commands/info/user.js index 91a741a5..91e0b464 100644 --- a/commands/info/user.js +++ b/commands/info/user.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const moment = require('moment'); const { MessageEmbed } = require('discord.js'); const { trimArray } = require('../../util/Util'); diff --git a/commands/other/kino.js b/commands/other/kino.js index 60e5af04..56fafa7e 100644 --- a/commands/other/kino.js +++ b/commands/other/kino.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const { escapeMarkdown } = require('discord.js'); const { verify } = require('../../util/Util'); diff --git a/commands/other/noop.js b/commands/other/noop.js index abc1cc4e..a9f1a6a7 100644 --- a/commands/other/noop.js +++ b/commands/other/noop.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class NoopCommand extends Command { constructor(client) { diff --git a/commands/other/portal-send.js b/commands/other/portal-send.js index 1b54ec46..6a185a20 100644 --- a/commands/other/portal-send.js +++ b/commands/other/portal-send.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripInvites, stripNSFWURLs } = require('../../util/Util'); const { stripIndents } = require('common-tags'); const { PORTAL_EMOJI_ID, PORTAL_EMOJI_NAME } = process.env; diff --git a/commands/other/prune.js b/commands/other/prune.js index 1bfb778a..6bdc0696 100644 --- a/commands/other/prune.js +++ b/commands/other/prune.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class PruneCommand extends Command { constructor(client) { diff --git a/commands/other/strawpoll.js b/commands/other/strawpoll.js index 2f508472..e1fbe800 100644 --- a/commands/other/strawpoll.js +++ b/commands/other/strawpoll.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const request = require('node-superfetch'); diff --git a/commands/phone/hang-up.js b/commands/phone/hang-up.js index 484130db..d882dfe4 100644 --- a/commands/phone/hang-up.js +++ b/commands/phone/hang-up.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class HangUpCommand extends Command { constructor(client) { diff --git a/commands/phone/phone-block.js b/commands/phone/phone-block.js index e76497f3..bc9b7e58 100644 --- a/commands/phone/phone-block.js +++ b/commands/phone/phone-block.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); module.exports = class PhoneBlockCommand extends Command { diff --git a/commands/phone/phone-info.js b/commands/phone/phone-info.js index 2945ce48..29738bcb 100644 --- a/commands/phone/phone-info.js +++ b/commands/phone/phone-info.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); module.exports = class PhoneInfoCommand extends Command { diff --git a/commands/phone/phone.js b/commands/phone/phone.js index 964603e1..82e9fbd9 100644 --- a/commands/phone/phone.js +++ b/commands/phone/phone.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const PhoneCall = require('../../structures/phone/PhoneCall'); module.exports = class PhoneCommand extends Command { diff --git a/commands/pokedex/pokedex-ability.js b/commands/pokedex/pokedex-ability.js index 26b6e3d9..31e94dbf 100644 --- a/commands/pokedex/pokedex-ability.js +++ b/commands/pokedex/pokedex-ability.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); module.exports = class PokedexAbilityCommand extends Command { diff --git a/commands/pokedex/pokedex-cry.js b/commands/pokedex/pokedex-cry.js index 3946ab09..39780f6f 100644 --- a/commands/pokedex/pokedex-cry.js +++ b/commands/pokedex/pokedex-cry.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { reactIfAble } = require('../../util/Util'); module.exports = class PokedexCryCommand extends Command { diff --git a/commands/pokedex/pokedex-image.js b/commands/pokedex/pokedex-image.js index bb9b60bf..f7ca8c78 100644 --- a/commands/pokedex/pokedex-image.js +++ b/commands/pokedex/pokedex-image.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class PokedexImageCommand extends Command { constructor(client) { diff --git a/commands/pokedex/pokedex-item.js b/commands/pokedex/pokedex-item.js index 8aee4a18..40f6e0d9 100644 --- a/commands/pokedex/pokedex-item.js +++ b/commands/pokedex/pokedex-item.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); module.exports = class PokedexItemCommand extends Command { diff --git a/commands/pokedex/pokedex-location.js b/commands/pokedex/pokedex-location.js index 39b2b286..8d9e97b1 100644 --- a/commands/pokedex/pokedex-location.js +++ b/commands/pokedex/pokedex-location.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const versions = require('../../assets/json/pokedex-location'); diff --git a/commands/pokedex/pokedex-move.js b/commands/pokedex/pokedex-move.js index d33be7b5..6d27f2d3 100644 --- a/commands/pokedex/pokedex-move.js +++ b/commands/pokedex/pokedex-move.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); module.exports = class PokedexMoveCommand extends Command { diff --git a/commands/pokedex/pokedex-moveset.js b/commands/pokedex/pokedex-moveset.js index 5cc1d1fb..32d7c9f3 100644 --- a/commands/pokedex/pokedex-moveset.js +++ b/commands/pokedex/pokedex-moveset.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const versions = { 'red-blue': 'Red and Blue', diff --git a/commands/pokedex/pokedex-stats.js b/commands/pokedex/pokedex-stats.js index 56a671b4..0e6f0094 100644 --- a/commands/pokedex/pokedex-stats.js +++ b/commands/pokedex/pokedex-stats.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const { stripIndents } = require('common-tags'); const { list } = require('../../util/Util'); diff --git a/commands/pokedex/pokedex.js b/commands/pokedex/pokedex.js index 064f7ca0..1f74b716 100644 --- a/commands/pokedex/pokedex.js +++ b/commands/pokedex/pokedex.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const { stripIndents } = require('common-tags'); const { arrayEquals, reactIfAble } = require('../../util/Util'); diff --git a/commands/pokedex/smogon.js b/commands/pokedex/smogon.js index 6744d3b2..0eb84a27 100644 --- a/commands/pokedex/smogon.js +++ b/commands/pokedex/smogon.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const genGames = [null, 'rb', 'gs', 'rs', 'dp', 'bw', 'xy', 'sm', 'ss']; const games = { diff --git a/commands/random-img/ai-art.js b/commands/random-img/ai-art.js index e1340fc0..be3af388 100644 --- a/commands/random-img/ai-art.js +++ b/commands/random-img/ai-art.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class AiArtworkCommand extends Command { diff --git a/commands/random-img/ai-cat.js b/commands/random-img/ai-cat.js index eed06844..863fde9a 100644 --- a/commands/random-img/ai-cat.js +++ b/commands/random-img/ai-cat.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class AiCatCommand extends Command { diff --git a/commands/random-img/ai-fursona.js b/commands/random-img/ai-fursona.js index 45f5cb77..b86dc7bb 100644 --- a/commands/random-img/ai-fursona.js +++ b/commands/random-img/ai-fursona.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class AiFursonaCommand extends Command { constructor(client) { diff --git a/commands/random-img/ai-horse.js b/commands/random-img/ai-horse.js index ba8982f7..63c0399d 100644 --- a/commands/random-img/ai-horse.js +++ b/commands/random-img/ai-horse.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class AiHorseCommand extends Command { diff --git a/commands/random-img/ai-person.js b/commands/random-img/ai-person.js index 2f974c68..bd9ef323 100644 --- a/commands/random-img/ai-person.js +++ b/commands/random-img/ai-person.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class AiPersonCommand extends Command { diff --git a/commands/random-img/ai-vase.js b/commands/random-img/ai-vase.js index 3d1ea69a..838a6d66 100644 --- a/commands/random-img/ai-vase.js +++ b/commands/random-img/ai-vase.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class AiVaseCommand extends Command { constructor(client) { diff --git a/commands/random-img/ai-waifu.js b/commands/random-img/ai-waifu.js index 29cda805..aaaaf5d4 100644 --- a/commands/random-img/ai-waifu.js +++ b/commands/random-img/ai-waifu.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class AiWaifuCommand extends Command { constructor(client) { diff --git a/commands/random-img/awwnime.js b/commands/random-img/awwnime.js index 3b90523f..e9c95265 100644 --- a/commands/random-img/awwnime.js +++ b/commands/random-img/awwnime.js @@ -1,4 +1,4 @@ -const SubredditCommand = require('../../structures/commands/Subreddit'); +const SubredditCommand = require('../../framework/Commands/Subreddit'); module.exports = class AwwnimeCommand extends SubredditCommand { constructor(client) { diff --git a/commands/random-img/bird.js b/commands/random-img/bird.js index ceccd9e2..46b0dd6d 100644 --- a/commands/random-img/bird.js +++ b/commands/random-img/bird.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class BirdCommand extends Command { diff --git a/commands/random-img/bunny.js b/commands/random-img/bunny.js index 8ff22885..b4669c3b 100644 --- a/commands/random-img/bunny.js +++ b/commands/random-img/bunny.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const facts = require('../../assets/json/bunny-fact'); diff --git a/commands/random-img/cat.js b/commands/random-img/cat.js index b35b96aa..9a36f475 100644 --- a/commands/random-img/cat.js +++ b/commands/random-img/cat.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const facts = require('../../assets/json/cat-fact'); const { THECATAPI_KEY } = process.env; diff --git a/commands/random-img/dog.js b/commands/random-img/dog.js index e87ae9e3..76687775 100644 --- a/commands/random-img/dog.js +++ b/commands/random-img/dog.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const facts = require('../../assets/json/dog-fact'); diff --git a/commands/random-img/duck.js b/commands/random-img/duck.js index fe066c4b..5a20473f 100644 --- a/commands/random-img/duck.js +++ b/commands/random-img/duck.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class DuckCommand extends Command { diff --git a/commands/random-img/fidget.js b/commands/random-img/fidget.js index 4e9b5603..845c9f59 100644 --- a/commands/random-img/fidget.js +++ b/commands/random-img/fidget.js @@ -1,4 +1,4 @@ -const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum'); +const ImgurAlbumCommand = require('../../framework/Commands/ImgurAlbum'); const { FIDGET_ALBUM_ID } = process.env; module.exports = class FidgetCommand extends ImgurAlbumCommand { diff --git a/commands/random-img/food.js b/commands/random-img/food.js index 477e130d..c56d19bb 100644 --- a/commands/random-img/food.js +++ b/commands/random-img/food.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const cheerio = require('cheerio'); diff --git a/commands/random-img/fox.js b/commands/random-img/fox.js index ff8e5323..4cb28cb9 100644 --- a/commands/random-img/fox.js +++ b/commands/random-img/fox.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class FoxCommand extends Command { diff --git a/commands/random-img/frog.js b/commands/random-img/frog.js index 75e32a12..c46eae74 100644 --- a/commands/random-img/frog.js +++ b/commands/random-img/frog.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class FrogCommand extends Command { constructor(client) { diff --git a/commands/random-img/goose.js b/commands/random-img/goose.js index faa2986f..2eed1c71 100644 --- a/commands/random-img/goose.js +++ b/commands/random-img/goose.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class GooseCommand extends Command { diff --git a/commands/random-img/hentai.js b/commands/random-img/hentai.js index 8c6add9f..04ec2345 100644 --- a/commands/random-img/hentai.js +++ b/commands/random-img/hentai.js @@ -1,4 +1,4 @@ -const SubredditCommand = require('../../structures/commands/Subreddit'); +const SubredditCommand = require('../../framework/Commands/Subreddit'); const { list } = require('../../util/Util'); const subreddits = require('../../assets/json/hentai'); diff --git a/commands/random-img/inspiration.js b/commands/random-img/inspiration.js index 460e771b..1e789bf2 100644 --- a/commands/random-img/inspiration.js +++ b/commands/random-img/inspiration.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class InspirationCommand extends Command { diff --git a/commands/random-img/interesting.js b/commands/random-img/interesting.js index ed8a6407..35c51e98 100644 --- a/commands/random-img/interesting.js +++ b/commands/random-img/interesting.js @@ -1,4 +1,4 @@ -const SubredditCommand = require('../../structures/commands/Subreddit'); +const SubredditCommand = require('../../framework/Commands/Subreddit'); const { list } = require('../../util/Util'); const subreddits = ['interestingasfuck', 'mildlyinteresting', 'damnthatsinteresting']; diff --git a/commands/random-img/kemonomimi.js b/commands/random-img/kemonomimi.js index 0a791dec..2d9fd546 100644 --- a/commands/random-img/kemonomimi.js +++ b/commands/random-img/kemonomimi.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class KemonomimiCommand extends Command { diff --git a/commands/random-img/light-novel-cover.js b/commands/random-img/light-novel-cover.js index 65b89a38..36b26af0 100644 --- a/commands/random-img/light-novel-cover.js +++ b/commands/random-img/light-novel-cover.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const cheerio = require('cheerio'); diff --git a/commands/random-img/lizard.js b/commands/random-img/lizard.js index 86a5d8c5..70edb8a5 100644 --- a/commands/random-img/lizard.js +++ b/commands/random-img/lizard.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class LizardCommand extends Command { diff --git a/commands/random-img/lorem-picsum.js b/commands/random-img/lorem-picsum.js index bcbc85ad..f13ad33b 100644 --- a/commands/random-img/lorem-picsum.js +++ b/commands/random-img/lorem-picsum.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class LoremPicsumCommand extends Command { diff --git a/commands/random-img/meme.js b/commands/random-img/meme.js index fe07ff3a..80180bde 100644 --- a/commands/random-img/meme.js +++ b/commands/random-img/meme.js @@ -1,4 +1,4 @@ -const SubredditCommand = require('../../structures/commands/Subreddit'); +const SubredditCommand = require('../../framework/Commands/Subreddit'); const { list } = require('../../util/Util'); const subreddits = require('../../assets/json/meme'); diff --git a/commands/random-img/porn.js b/commands/random-img/porn.js index 7fcd0149..83476c13 100644 --- a/commands/random-img/porn.js +++ b/commands/random-img/porn.js @@ -1,4 +1,4 @@ -const SubredditCommand = require('../../structures/commands/Subreddit'); +const SubredditCommand = require('../../framework/Commands/Subreddit'); const { list } = require('../../util/Util'); const subreddits = require('../../assets/json/porn'); diff --git a/commands/random-img/potato.js b/commands/random-img/potato.js index 48dd1d10..996e8d72 100644 --- a/commands/random-img/potato.js +++ b/commands/random-img/potato.js @@ -1,4 +1,4 @@ -const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum'); +const ImgurAlbumCommand = require('../../framework/Commands/ImgurAlbum'); const { POTATO_ALBUM_ID } = process.env; module.exports = class PotatoCommand extends ImgurAlbumCommand { diff --git a/commands/random-img/red-panda.js b/commands/random-img/red-panda.js index 1950a0ae..3faf4059 100644 --- a/commands/random-img/red-panda.js +++ b/commands/random-img/red-panda.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class RedPandaCommand extends Command { diff --git a/commands/random-img/shiba.js b/commands/random-img/shiba.js index dec9d658..488d16f9 100644 --- a/commands/random-img/shiba.js +++ b/commands/random-img/shiba.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class ShibaCommand extends Command { diff --git a/commands/random-img/xiao.js b/commands/random-img/xiao.js index f2a6a76c..bd0dacdb 100644 --- a/commands/random-img/xiao.js +++ b/commands/random-img/xiao.js @@ -1,4 +1,4 @@ -const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum'); +const ImgurAlbumCommand = require('../../framework/Commands/ImgurAlbum'); const { XIAO_ALBUM_ID } = process.env; module.exports = class XiaoCommand extends ImgurAlbumCommand { diff --git a/commands/random-res/8-ball.js b/commands/random-res/8-ball.js index 68508813..6e3c1d29 100644 --- a/commands/random-res/8-ball.js +++ b/commands/random-res/8-ball.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const answers = require('../../assets/json/8-ball'); diff --git a/commands/random-res/acrostic.js b/commands/random-res/acrostic.js index e4295dd0..77818564 100644 --- a/commands/random-res/acrostic.js +++ b/commands/random-res/acrostic.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const words = require('../../assets/json/word-list'); module.exports = class AcrosticCommand extends Command { diff --git a/commands/random-res/advice.js b/commands/random-res/advice.js index 5a0e97e1..09ccf9c4 100644 --- a/commands/random-res/advice.js +++ b/commands/random-res/advice.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class AdviceCommand extends Command { diff --git a/commands/random-res/affirmation.js b/commands/random-res/affirmation.js index 1b0178a9..ebbc0c99 100644 --- a/commands/random-res/affirmation.js +++ b/commands/random-res/affirmation.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const affirmations = require('../../assets/json/affirmation'); module.exports = class AffirmationCommand extends Command { diff --git a/commands/random-res/axis-cult.js b/commands/random-res/axis-cult.js index 59f603b5..a2704388 100644 --- a/commands/random-res/axis-cult.js +++ b/commands/random-res/axis-cult.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const teachings = require('../../assets/json/axis-cult'); module.exports = class AxisCultCommand extends Command { diff --git a/commands/random-res/boredom.js b/commands/random-res/boredom.js index 38b90f15..8812044a 100644 --- a/commands/random-res/boredom.js +++ b/commands/random-res/boredom.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class BoredomCommand extends Command { diff --git a/commands/random-res/charlie-charlie.js b/commands/random-res/charlie-charlie.js index 7d5b9add..d72dc468 100644 --- a/commands/random-res/charlie-charlie.js +++ b/commands/random-res/charlie-charlie.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndent } = require('common-tags'); const answers = ['yes', 'no']; diff --git a/commands/random-res/choose.js b/commands/random-res/choose.js index 6603ea11..bb87c207 100644 --- a/commands/random-res/choose.js +++ b/commands/random-res/choose.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class ChooseCommand extends Command { constructor(client) { diff --git a/commands/random-res/chuck-norris.js b/commands/random-res/chuck-norris.js index e84fc06c..bf6fc0db 100644 --- a/commands/random-res/chuck-norris.js +++ b/commands/random-res/chuck-norris.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class ChuckNorrisCommand extends Command { diff --git a/commands/random-res/coin.js b/commands/random-res/coin.js index a023966c..9ad68a7f 100644 --- a/commands/random-res/coin.js +++ b/commands/random-res/coin.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const sides = ['heads', 'tails']; module.exports = class CoinCommand extends Command { diff --git a/commands/random-res/compliment.js b/commands/random-res/compliment.js index 3fa62e2e..e93b02eb 100644 --- a/commands/random-res/compliment.js +++ b/commands/random-res/compliment.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const compliments = require('../../assets/json/compliment'); module.exports = class ComplimentCommand extends Command { diff --git a/commands/random-res/draw-cards.js b/commands/random-res/draw-cards.js index 2a240ab9..7d5c614b 100644 --- a/commands/random-res/draw-cards.js +++ b/commands/random-res/draw-cards.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const Deck = require('../../structures/cards/Deck'); module.exports = class DrawCardsCommand extends Command { diff --git a/commands/random-res/fact-core.js b/commands/random-res/fact-core.js index e4208a18..64fc93da 100644 --- a/commands/random-res/fact-core.js +++ b/commands/random-res/fact-core.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const facts = require('../../assets/json/fact-core'); module.exports = class FactCoreCommand extends Command { diff --git a/commands/random-res/fact.js b/commands/random-res/fact.js index d8b091b7..f131734d 100644 --- a/commands/random-res/fact.js +++ b/commands/random-res/fact.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class FactCommand extends Command { diff --git a/commands/random-res/fake-poll.js b/commands/random-res/fake-poll.js index 24274263..5ccfba59 100644 --- a/commands/random-res/fake-poll.js +++ b/commands/random-res/fake-poll.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const { randomRange } = require('../../util/Util'); diff --git a/commands/random-res/fml.js b/commands/random-res/fml.js index adff0832..4351c530 100644 --- a/commands/random-res/fml.js +++ b/commands/random-res/fml.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const cheerio = require('cheerio'); diff --git a/commands/random-res/fortune.js b/commands/random-res/fortune.js index a178ce88..38184686 100644 --- a/commands/random-res/fortune.js +++ b/commands/random-res/fortune.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const fortunes = require('../../assets/json/fortune'); diff --git a/commands/random-res/github-zen.js b/commands/random-res/github-zen.js index 1302bbdf..06e44648 100644 --- a/commands/random-res/github-zen.js +++ b/commands/random-res/github-zen.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class GithubZenCommand extends Command { diff --git a/commands/random-res/incorrect-quote.js b/commands/random-res/incorrect-quote.js index e062e41d..9f6729ed 100644 --- a/commands/random-res/incorrect-quote.js +++ b/commands/random-res/incorrect-quote.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const quotes = require('../../assets/json/incorrect-quote'); module.exports = class IncorrectQuoteCommand extends Command { diff --git a/commands/random-res/joke.js b/commands/random-res/joke.js index 37d2202d..73bcace1 100644 --- a/commands/random-res/joke.js +++ b/commands/random-res/joke.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { stripIndents } = require('common-tags'); const blacklistFlags = ['religious', 'racist', 'sexist']; diff --git a/commands/random-res/kiss-marry-kill.js b/commands/random-res/kiss-marry-kill.js index 8ee973c4..d7088c37 100644 --- a/commands/random-res/kiss-marry-kill.js +++ b/commands/random-res/kiss-marry-kill.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { shuffle } = require('../../util/Util'); module.exports = class KissMarryKillCommand extends Command { diff --git a/commands/random-res/light-novel-title.js b/commands/random-res/light-novel-title.js index d3c00649..9732061d 100644 --- a/commands/random-res/light-novel-title.js +++ b/commands/random-res/light-novel-title.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class LightNovelTitleCommand extends Command { diff --git a/commands/random-res/lorem-ipsum.js b/commands/random-res/lorem-ipsum.js index 4d7bd517..4811719e 100644 --- a/commands/random-res/lorem-ipsum.js +++ b/commands/random-res/lorem-ipsum.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { firstUpperCase } = require('../../util/Util'); const words = require('../../assets/json/lorem-ipsum'); const firstSentence = ['Lorem', 'ipsum', 'dolor', 'sit', 'amet,', 'consectetur', 'adipiscing', 'elit']; diff --git a/commands/random-res/magic-conch.js b/commands/random-res/magic-conch.js index 660d1d54..0ff2032b 100644 --- a/commands/random-res/magic-conch.js +++ b/commands/random-res/magic-conch.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const answers = require('../../assets/json/magic-conch'); diff --git a/commands/random-res/name.js b/commands/random-res/name.js index 1e4a38da..0315e27e 100644 --- a/commands/random-res/name.js +++ b/commands/random-res/name.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { list } = require('../../util/Util'); const genders = ['male', 'female', 'both']; diff --git a/commands/random-res/never-have-i-ever.js b/commands/random-res/never-have-i-ever.js index 8cc65bd6..9a859b2c 100644 --- a/commands/random-res/never-have-i-ever.js +++ b/commands/random-res/never-have-i-ever.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { safe, nsfw } = require('../../assets/json/never-have-i-ever'); const all = [...safe, ...nsfw]; diff --git a/commands/random-res/news.js b/commands/random-res/news.js index e3ac2c53..d2815b1f 100644 --- a/commands/random-res/news.js +++ b/commands/random-res/news.js @@ -1,4 +1,4 @@ -const SubredditCommand = require('../../structures/commands/Subreddit'); +const SubredditCommand = require('../../framework/Commands/Subreddit'); const { list } = require('../../util/Util'); const subreddits = require('../../assets/json/news'); diff --git a/commands/random-res/number-fact.js b/commands/random-res/number-fact.js index b2bc04df..099e2157 100644 --- a/commands/random-res/number-fact.js +++ b/commands/random-res/number-fact.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class NumberFactCommand extends Command { diff --git a/commands/random-res/offspring.js b/commands/random-res/offspring.js index 0e847f9c..6d432aff 100644 --- a/commands/random-res/offspring.js +++ b/commands/random-res/offspring.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const genders = ['boy', 'girl']; module.exports = class OffspringCommand extends Command { diff --git a/commands/random-res/opinion.js b/commands/random-res/opinion.js index fde227a6..7dcd0f61 100644 --- a/commands/random-res/opinion.js +++ b/commands/random-res/opinion.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const opinions = ['👍', '👎']; diff --git a/commands/random-res/oracle-turret.js b/commands/random-res/oracle-turret.js index d33c3855..fcd9aec9 100644 --- a/commands/random-res/oracle-turret.js +++ b/commands/random-res/oracle-turret.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const quotes = require('../../assets/json/oracle-turret'); module.exports = class OracleTurretCommand extends Command { diff --git a/commands/random-res/pun.js b/commands/random-res/pun.js index 603d1b24..a9848e19 100644 --- a/commands/random-res/pun.js +++ b/commands/random-res/pun.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { stripIndents } = require('common-tags'); const blacklistFlags = ['religious', 'racist', 'sexist']; diff --git a/commands/random-res/quantum-coin.js b/commands/random-res/quantum-coin.js index 9b249821..1529ef43 100644 --- a/commands/random-res/quantum-coin.js +++ b/commands/random-res/quantum-coin.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const sides = [NaN, 0, null, undefined, '']; module.exports = class QuantumCoinCommand extends Command { diff --git a/commands/random-res/quote.js b/commands/random-res/quote.js index 718fde8c..90cc1b82 100644 --- a/commands/random-res/quote.js +++ b/commands/random-res/quote.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const quotes = require('../../assets/json/quote'); module.exports = class QuoteCommand extends Command { diff --git a/commands/random-res/random-user.js b/commands/random-res/random-user.js index ee8359b1..1a86245b 100644 --- a/commands/random-res/random-user.js +++ b/commands/random-res/random-user.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class RandomUserCommand extends Command { constructor(client) { diff --git a/commands/random-res/rank.js b/commands/random-res/rank.js index 41592af8..f4b17dec 100644 --- a/commands/random-res/rank.js +++ b/commands/random-res/rank.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { shuffle } = require('../../util/Util'); module.exports = class RankCommand extends Command { diff --git a/commands/random-res/rate.js b/commands/random-res/rate.js index d2b0ebe7..e7512ff6 100644 --- a/commands/random-res/rate.js +++ b/commands/random-res/rate.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class RateCommand extends Command { constructor(client) { diff --git a/commands/random-res/roast.js b/commands/random-res/roast.js index e07c0643..55721910 100644 --- a/commands/random-res/roast.js +++ b/commands/random-res/roast.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const roasts = require('../../assets/json/roast'); module.exports = class RoastCommand extends Command { diff --git a/commands/random-res/roll.js b/commands/random-res/roll.js index dc8b7a9c..0e525f51 100644 --- a/commands/random-res/roll.js +++ b/commands/random-res/roll.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { randomRange, formatNumber } = require('../../util/Util'); module.exports = class RollCommand extends Command { diff --git a/commands/random-res/security-key.js b/commands/random-res/security-key.js index 2f15ca9d..c6b51f31 100644 --- a/commands/random-res/security-key.js +++ b/commands/random-res/security-key.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const crypto = require('crypto'); module.exports = class SecurityKeyCommand extends Command { diff --git a/commands/random-res/shower-thought.js b/commands/random-res/shower-thought.js index 952e670d..5b72a3de 100644 --- a/commands/random-res/shower-thought.js +++ b/commands/random-res/shower-thought.js @@ -1,4 +1,4 @@ -const SubredditCommand = require('../../structures/commands/Subreddit'); +const SubredditCommand = require('../../framework/Commands/Subreddit'); module.exports = class ShowerThoughtCommand extends SubredditCommand { constructor(client) { diff --git a/commands/random-res/smw-level.js b/commands/random-res/smw-level.js index 1a0b3c96..ffc72c59 100644 --- a/commands/random-res/smw-level.js +++ b/commands/random-res/smw-level.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { start, end } = require('../../assets/json/smw-level'); module.exports = class SmwLevelCommand extends Command { diff --git a/commands/random-res/subreddit.js b/commands/random-res/subreddit.js index aac20d77..acab049f 100644 --- a/commands/random-res/subreddit.js +++ b/commands/random-res/subreddit.js @@ -1,4 +1,4 @@ -const SubredditCommandBase = require('../../structures/commands/Subreddit'); +const SubredditCommandBase = require('../../framework/Commands/Subreddit'); module.exports = class SubredditCommand extends SubredditCommandBase { constructor(client) { diff --git a/commands/random-res/suggest-command.js b/commands/random-res/suggest-command.js index f2c95d92..bcc6d57a 100644 --- a/commands/random-res/suggest-command.js +++ b/commands/random-res/suggest-command.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); module.exports = class SuggestCommandCommand extends Command { diff --git a/commands/random-res/superpower.js b/commands/random-res/superpower.js index 906370d9..f5956b98 100644 --- a/commands/random-res/superpower.js +++ b/commands/random-res/superpower.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { stripIndents } = require('common-tags'); diff --git a/commands/random-res/the-onion.js b/commands/random-res/the-onion.js index 1aaa44da..0f83551d 100644 --- a/commands/random-res/the-onion.js +++ b/commands/random-res/the-onion.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const RSS = require('rss-parser'); const { stripIndents } = require('common-tags'); diff --git a/commands/random-res/this-for-that.js b/commands/random-res/this-for-that.js index 31173597..92df9c5b 100644 --- a/commands/random-res/this-for-that.js +++ b/commands/random-res/this-for-that.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class ThisForThatCommand extends Command { diff --git a/commands/random-res/user-agent.js b/commands/random-res/user-agent.js index b8d73e0e..d83b4d37 100644 --- a/commands/random-res/user-agent.js +++ b/commands/random-res/user-agent.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const UserAgent = require('user-agents'); module.exports = class UserAgentCommand extends Command { diff --git a/commands/random-res/word.js b/commands/random-res/word.js index 50066a47..73f95eda 100644 --- a/commands/random-res/word.js +++ b/commands/random-res/word.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const words = require('../../assets/json/word-list'); module.exports = class WordCommand extends Command { diff --git a/commands/random-res/xiao-fact.js b/commands/random-res/xiao-fact.js index e6dc3fdb..21c9d38d 100644 --- a/commands/random-res/xiao-fact.js +++ b/commands/random-res/xiao-fact.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const facts = require('../../assets/json/xiao-fact'); module.exports = class XiaoFactCommand extends Command { diff --git a/commands/random-res/yes-no.js b/commands/random-res/yes-no.js index e01ad149..d0e19119 100644 --- a/commands/random-res/yes-no.js +++ b/commands/random-res/yes-no.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const answers = ['😄 Yes', '🙁 No']; diff --git a/commands/random-res/yo-mama.js b/commands/random-res/yo-mama.js index 7b6b5e23..98bc7b86 100644 --- a/commands/random-res/yo-mama.js +++ b/commands/random-res/yo-mama.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const jokes = require('../../assets/json/yo-mama'); module.exports = class YoMamaCommand extends Command { diff --git a/commands/random-seed/adorable.js b/commands/random-seed/adorable.js index a7b7379d..4b7db5f4 100644 --- a/commands/random-seed/adorable.js +++ b/commands/random-seed/adorable.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class AdorableCommand extends Command { diff --git a/commands/random-seed/butt.js b/commands/random-seed/butt.js index 71691aaa..69443124 100644 --- a/commands/random-seed/butt.js +++ b/commands/random-seed/butt.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MersenneTwister19937, integer } = require('random-js'); const texts = require('../../assets/json/butt'); diff --git a/commands/random-seed/coolness.js b/commands/random-seed/coolness.js index 081db280..6e778bc2 100644 --- a/commands/random-seed/coolness.js +++ b/commands/random-seed/coolness.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MersenneTwister19937, integer } = require('random-js'); const texts = require('../../assets/json/coolness'); const { LOVER_USER_ID } = process.env; diff --git a/commands/random-seed/cuteness.js b/commands/random-seed/cuteness.js index dd08b157..4752395a 100644 --- a/commands/random-seed/cuteness.js +++ b/commands/random-seed/cuteness.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MersenneTwister19937, integer } = require('random-js'); const texts = require('../../assets/json/cuteness'); const { LOVER_USER_ID } = process.env; diff --git a/commands/random-seed/dicebear.js b/commands/random-seed/dicebear.js index c38325b5..198aa414 100644 --- a/commands/random-seed/dicebear.js +++ b/commands/random-seed/dicebear.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { createCanvas, loadImage } = require('canvas'); const { list } = require('../../util/Util'); diff --git a/commands/random-seed/dick.js b/commands/random-seed/dick.js index 0ccd7877..77f3946d 100644 --- a/commands/random-seed/dick.js +++ b/commands/random-seed/dick.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MersenneTwister19937, integer } = require('random-js'); module.exports = class DickCommand extends Command { diff --git a/commands/random-seed/friendship.js b/commands/random-seed/friendship.js index 39fff1bc..106ab3a5 100644 --- a/commands/random-seed/friendship.js +++ b/commands/random-seed/friendship.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MersenneTwister19937, integer } = require('random-js'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); diff --git a/commands/random-seed/guess-looks.js b/commands/random-seed/guess-looks.js index a2dd8515..ff69f816 100644 --- a/commands/random-seed/guess-looks.js +++ b/commands/random-seed/guess-looks.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { oneLine } = require('common-tags'); const { MersenneTwister19937, integer } = require('random-js'); const genders = ['male', 'female']; diff --git a/commands/random-seed/iq.js b/commands/random-seed/iq.js index ba437657..6bd57049 100644 --- a/commands/random-seed/iq.js +++ b/commands/random-seed/iq.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MersenneTwister19937, integer } = require('random-js'); module.exports = class IQCommand extends Command { diff --git a/commands/random-seed/name-rater.js b/commands/random-seed/name-rater.js index c899cf40..5a4e2656 100644 --- a/commands/random-seed/name-rater.js +++ b/commands/random-seed/name-rater.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { User } = require('discord.js'); const { MersenneTwister19937, integer } = require('random-js'); const texts = require('../../assets/json/name-rater'); diff --git a/commands/random-seed/psycho-pass.js b/commands/random-seed/psycho-pass.js index a43f0c68..c41f5d61 100644 --- a/commands/random-seed/psycho-pass.js +++ b/commands/random-seed/psycho-pass.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MersenneTwister19937, integer } = require('random-js'); const { under100, between, over300 } = require('../../assets/json/psycho-pass'); diff --git a/commands/random-seed/robohash.js b/commands/random-seed/robohash.js index 424c4945..17e0a041 100644 --- a/commands/random-seed/robohash.js +++ b/commands/random-seed/robohash.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class RobohashCommand extends Command { diff --git a/commands/random-seed/ship.js b/commands/random-seed/ship.js index 47d6c240..7e07005c 100644 --- a/commands/random-seed/ship.js +++ b/commands/random-seed/ship.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MersenneTwister19937, integer } = require('random-js'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); diff --git a/commands/random-seed/smash-or-pass.js b/commands/random-seed/smash-or-pass.js index ca9fc81c..b2d10150 100644 --- a/commands/random-seed/smash-or-pass.js +++ b/commands/random-seed/smash-or-pass.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MersenneTwister19937, bool } = require('random-js'); const { LOVER_USER_ID } = process.env; diff --git a/commands/random-seed/thicc.js b/commands/random-seed/thicc.js index 1c344c13..50090203 100644 --- a/commands/random-seed/thicc.js +++ b/commands/random-seed/thicc.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MersenneTwister19937, integer } = require('random-js'); module.exports = class ThiccCommand extends Command { diff --git a/commands/random-seed/think-of.js b/commands/random-seed/think-of.js index c938aaff..f5ba8c93 100644 --- a/commands/random-seed/think-of.js +++ b/commands/random-seed/think-of.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MersenneTwister19937, integer } = require('random-js'); const { createCanvas, loadImage } = require('canvas'); const request = require('node-superfetch'); diff --git a/commands/random-seed/worth.js b/commands/random-seed/worth.js index 6d95aa3c..df9edb41 100644 --- a/commands/random-seed/worth.js +++ b/commands/random-seed/worth.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MersenneTwister19937, integer } = require('random-js'); const { formatNumber } = require('../../util/Util'); const { LOVER_USER_ID } = process.env; diff --git a/commands/remind/delete-reminder.js b/commands/remind/delete-reminder.js index 1178005c..fab417a4 100644 --- a/commands/remind/delete-reminder.js +++ b/commands/remind/delete-reminder.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class DeleteReminderCommand extends Command { constructor(client) { diff --git a/commands/remind/remind.js b/commands/remind/remind.js index 0b563c6c..eaa22621 100644 --- a/commands/remind/remind.js +++ b/commands/remind/remind.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const moment = require('moment'); const { shorten } = require('../../util/Util'); diff --git a/commands/roleplay/bite.js b/commands/roleplay/bite.js index 5f1461ed..6f0381ad 100644 --- a/commands/roleplay/bite.js +++ b/commands/roleplay/bite.js @@ -1,4 +1,4 @@ -const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum'); +const ImgurAlbumCommand = require('../../framework/Commands/ImgurAlbum'); const { BITE_ALBUM_ID } = process.env; module.exports = class BiteCommand extends ImgurAlbumCommand { diff --git a/commands/roleplay/blush.js b/commands/roleplay/blush.js index 10c58d03..f27d25c0 100644 --- a/commands/roleplay/blush.js +++ b/commands/roleplay/blush.js @@ -1,4 +1,4 @@ -const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum'); +const ImgurAlbumCommand = require('../../framework/Commands/ImgurAlbum'); const { BLUSH_ALBUM_ID } = process.env; module.exports = class BlushCommand extends ImgurAlbumCommand { diff --git a/commands/roleplay/bro-hoof.js b/commands/roleplay/bro-hoof.js index 0de9ac50..b996dd3b 100644 --- a/commands/roleplay/bro-hoof.js +++ b/commands/roleplay/bro-hoof.js @@ -1,4 +1,4 @@ -const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum'); +const ImgurAlbumCommand = require('../../framework/Commands/ImgurAlbum'); const { BRO_HOOF_ALBUM_ID } = process.env; module.exports = class BroHoofCommand extends ImgurAlbumCommand { diff --git a/commands/roleplay/celebrate.js b/commands/roleplay/celebrate.js index 316458e6..4b51c5e1 100644 --- a/commands/roleplay/celebrate.js +++ b/commands/roleplay/celebrate.js @@ -1,4 +1,4 @@ -const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum'); +const ImgurAlbumCommand = require('../../framework/Commands/ImgurAlbum'); const { CELEBRATE_ALBUM_ID } = process.env; module.exports = class CelebrateCommand extends ImgurAlbumCommand { diff --git a/commands/roleplay/cry.js b/commands/roleplay/cry.js index ae89f888..70449ef0 100644 --- a/commands/roleplay/cry.js +++ b/commands/roleplay/cry.js @@ -1,4 +1,4 @@ -const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum'); +const ImgurAlbumCommand = require('../../framework/Commands/ImgurAlbum'); const { CRY_ALBUM_ID } = process.env; module.exports = class CryCommand extends ImgurAlbumCommand { diff --git a/commands/roleplay/eat.js b/commands/roleplay/eat.js index 9600510b..2124efbb 100644 --- a/commands/roleplay/eat.js +++ b/commands/roleplay/eat.js @@ -1,4 +1,4 @@ -const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum'); +const ImgurAlbumCommand = require('../../framework/Commands/ImgurAlbum'); const { EAT_ALBUM_ID } = process.env; module.exports = class EatCommand extends ImgurAlbumCommand { diff --git a/commands/roleplay/explode.js b/commands/roleplay/explode.js index bcfef704..6ea320c9 100644 --- a/commands/roleplay/explode.js +++ b/commands/roleplay/explode.js @@ -1,4 +1,4 @@ -const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum'); +const ImgurAlbumCommand = require('../../framework/Commands/ImgurAlbum'); const { EXPLODE_ALBUM_ID } = process.env; module.exports = class ExplodeCommand extends ImgurAlbumCommand { diff --git a/commands/roleplay/fist-bump.js b/commands/roleplay/fist-bump.js index 2b6c7fa1..56efbf5d 100644 --- a/commands/roleplay/fist-bump.js +++ b/commands/roleplay/fist-bump.js @@ -1,4 +1,4 @@ -const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum'); +const ImgurAlbumCommand = require('../../framework/Commands/ImgurAlbum'); const { FIST_BUMP_ALBUM_ID } = process.env; module.exports = class FistBumpCommand extends ImgurAlbumCommand { diff --git a/commands/roleplay/high-five.js b/commands/roleplay/high-five.js index 62406fa7..ac3f8e6f 100644 --- a/commands/roleplay/high-five.js +++ b/commands/roleplay/high-five.js @@ -1,4 +1,4 @@ -const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum'); +const ImgurAlbumCommand = require('../../framework/Commands/ImgurAlbum'); const { HIGH_FIVE_ALBUM_ID } = process.env; module.exports = class HighFiveCommand extends ImgurAlbumCommand { diff --git a/commands/roleplay/hold-hands.js b/commands/roleplay/hold-hands.js index b0fb77f9..1f7830f8 100644 --- a/commands/roleplay/hold-hands.js +++ b/commands/roleplay/hold-hands.js @@ -1,4 +1,4 @@ -const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum'); +const ImgurAlbumCommand = require('../../framework/Commands/ImgurAlbum'); const { HOLD_HANDS_ALBUM_ID } = process.env; module.exports = class HoldHandsCommand extends ImgurAlbumCommand { diff --git a/commands/roleplay/hug.js b/commands/roleplay/hug.js index 82b8250c..0d07c40d 100644 --- a/commands/roleplay/hug.js +++ b/commands/roleplay/hug.js @@ -1,4 +1,4 @@ -const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum'); +const ImgurAlbumCommand = require('../../framework/Commands/ImgurAlbum'); const { HUG_ALBUM_ID } = process.env; module.exports = class HugCommand extends ImgurAlbumCommand { diff --git a/commands/roleplay/inhale.js b/commands/roleplay/inhale.js index ddef2d8b..5649c5d9 100644 --- a/commands/roleplay/inhale.js +++ b/commands/roleplay/inhale.js @@ -1,4 +1,4 @@ -const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum'); +const ImgurAlbumCommand = require('../../framework/Commands/ImgurAlbum'); const { INHALE_ALBUM_ID } = process.env; module.exports = class InhaleCommand extends ImgurAlbumCommand { diff --git a/commands/roleplay/kill.js b/commands/roleplay/kill.js index c0ff3387..d2ae630e 100644 --- a/commands/roleplay/kill.js +++ b/commands/roleplay/kill.js @@ -1,4 +1,4 @@ -const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum'); +const ImgurAlbumCommand = require('../../framework/Commands/ImgurAlbum'); const { KILL_ALBUM_ID } = process.env; module.exports = class KillCommand extends ImgurAlbumCommand { diff --git a/commands/roleplay/kiss.js b/commands/roleplay/kiss.js index 1f02acb2..bdc54e4a 100644 --- a/commands/roleplay/kiss.js +++ b/commands/roleplay/kiss.js @@ -1,4 +1,4 @@ -const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum'); +const ImgurAlbumCommand = require('../../framework/Commands/ImgurAlbum'); const { KISS_ALBUM_ID } = process.env; module.exports = class KissCommand extends ImgurAlbumCommand { diff --git a/commands/roleplay/pat.js b/commands/roleplay/pat.js index af529403..1ea77687 100644 --- a/commands/roleplay/pat.js +++ b/commands/roleplay/pat.js @@ -1,4 +1,4 @@ -const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum'); +const ImgurAlbumCommand = require('../../framework/Commands/ImgurAlbum'); const { PAT_ALBUM_ID } = process.env; module.exports = class PatCommand extends ImgurAlbumCommand { diff --git a/commands/roleplay/poke.js b/commands/roleplay/poke.js index e95278eb..fbee357b 100644 --- a/commands/roleplay/poke.js +++ b/commands/roleplay/poke.js @@ -1,4 +1,4 @@ -const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum'); +const ImgurAlbumCommand = require('../../framework/Commands/ImgurAlbum'); const { POKE_ALBUM_ID } = process.env; module.exports = class PokeCommand extends ImgurAlbumCommand { diff --git a/commands/roleplay/punch.js b/commands/roleplay/punch.js index 51ea92ca..09d60215 100644 --- a/commands/roleplay/punch.js +++ b/commands/roleplay/punch.js @@ -1,4 +1,4 @@ -const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum'); +const ImgurAlbumCommand = require('../../framework/Commands/ImgurAlbum'); const { PUNCH_ALBUM_ID } = process.env; module.exports = class PunchCommand extends ImgurAlbumCommand { diff --git a/commands/roleplay/slap.js b/commands/roleplay/slap.js index 83a954e4..66044ecd 100644 --- a/commands/roleplay/slap.js +++ b/commands/roleplay/slap.js @@ -1,4 +1,4 @@ -const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum'); +const ImgurAlbumCommand = require('../../framework/Commands/ImgurAlbum'); const { SLAP_ALBUM_ID } = process.env; module.exports = class SlapCommand extends ImgurAlbumCommand { diff --git a/commands/roleplay/sleep.js b/commands/roleplay/sleep.js index 39f000e5..39361405 100644 --- a/commands/roleplay/sleep.js +++ b/commands/roleplay/sleep.js @@ -1,4 +1,4 @@ -const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum'); +const ImgurAlbumCommand = require('../../framework/Commands/ImgurAlbum'); const { SLEEP_ALBUM_ID } = process.env; module.exports = class SleepCommand extends ImgurAlbumCommand { diff --git a/commands/roleplay/smile.js b/commands/roleplay/smile.js index eb7459fe..15de1bd5 100644 --- a/commands/roleplay/smile.js +++ b/commands/roleplay/smile.js @@ -1,4 +1,4 @@ -const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum'); +const ImgurAlbumCommand = require('../../framework/Commands/ImgurAlbum'); const { SMILE_ALBUM_ID } = process.env; module.exports = class SmileCommand extends ImgurAlbumCommand { diff --git a/commands/roleplay/wake-up.js b/commands/roleplay/wake-up.js index 49ea998f..538351c5 100644 --- a/commands/roleplay/wake-up.js +++ b/commands/roleplay/wake-up.js @@ -1,4 +1,4 @@ -const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum'); +const ImgurAlbumCommand = require('../../framework/Commands/ImgurAlbum'); const { WAKE_UP_ALBUM_ID } = process.env; module.exports = class WakeUpCommand extends ImgurAlbumCommand { diff --git a/commands/roleplay/wave.js b/commands/roleplay/wave.js index 7e3eedf4..d21e15f5 100644 --- a/commands/roleplay/wave.js +++ b/commands/roleplay/wave.js @@ -1,4 +1,4 @@ -const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum'); +const ImgurAlbumCommand = require('../../framework/Commands/ImgurAlbum'); const { WAVE_ALBUM_ID } = process.env; module.exports = class WaveCommand extends ImgurAlbumCommand { diff --git a/commands/roleplay/wink.js b/commands/roleplay/wink.js index 2d6f78d7..f5e71326 100644 --- a/commands/roleplay/wink.js +++ b/commands/roleplay/wink.js @@ -1,4 +1,4 @@ -const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum'); +const ImgurAlbumCommand = require('../../framework/Commands/ImgurAlbum'); const { WINK_ALBUM_ID } = process.env; module.exports = class WinkCommand extends ImgurAlbumCommand { diff --git a/commands/search/anilist.js b/commands/search/anilist.js index e0564adb..a3f8404a 100644 --- a/commands/search/anilist.js +++ b/commands/search/anilist.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { stripIndents } = require('common-tags'); const searchGraphQL = stripIndents` diff --git a/commands/search/anime-character.js b/commands/search/anime-character.js index 889b6371..1178d6b3 100644 --- a/commands/search/anime-character.js +++ b/commands/search/anime-character.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const { stripIndents } = require('common-tags'); diff --git a/commands/search/anime-figure.js b/commands/search/anime-figure.js index 5ffe2179..612952c5 100644 --- a/commands/search/anime-figure.js +++ b/commands/search/anime-figure.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const cheerio = require('cheerio'); diff --git a/commands/search/anime-staff.js b/commands/search/anime-staff.js index 96cc828e..acab3020 100644 --- a/commands/search/anime-staff.js +++ b/commands/search/anime-staff.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const { stripIndents } = require('common-tags'); diff --git a/commands/search/anime.js b/commands/search/anime.js index 40b98f08..1e453ba6 100644 --- a/commands/search/anime.js +++ b/commands/search/anime.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const cheerio = require('cheerio'); diff --git a/commands/search/book.js b/commands/search/book.js index 14ce93b1..349cc6ab 100644 --- a/commands/search/book.js +++ b/commands/search/book.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const { shorten, formatNumber } = require('../../util/Util'); diff --git a/commands/search/bulbapedia.js b/commands/search/bulbapedia.js index 95f133e5..747484df 100644 --- a/commands/search/bulbapedia.js +++ b/commands/search/bulbapedia.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const { shorten } = require('../../util/Util'); diff --git a/commands/search/company.js b/commands/search/company.js index d7271282..f4ef833e 100644 --- a/commands/search/company.js +++ b/commands/search/company.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const { CLEARBIT_KEY } = process.env; diff --git a/commands/search/country.js b/commands/search/country.js index f9f5cad2..ba0435e7 100644 --- a/commands/search/country.js +++ b/commands/search/country.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const { formatNumber } = require('../../util/Util'); diff --git a/commands/search/danbooru.js b/commands/search/danbooru.js index 6e086045..0cb0c604 100644 --- a/commands/search/danbooru.js +++ b/commands/search/danbooru.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class DanbooruCommand extends Command { diff --git a/commands/search/define.js b/commands/search/define.js index 4995901c..00c74658 100644 --- a/commands/search/define.js +++ b/commands/search/define.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { stripIndents } = require('common-tags'); const { WEBSTER_KEY } = process.env; diff --git a/commands/search/derpibooru.js b/commands/search/derpibooru.js index 27cebd48..9010c118 100644 --- a/commands/search/derpibooru.js +++ b/commands/search/derpibooru.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class DerpibooruCommand extends Command { diff --git a/commands/search/deviantart.js b/commands/search/deviantart.js index 03f5d5fd..89bfbc64 100644 --- a/commands/search/deviantart.js +++ b/commands/search/deviantart.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { list } = require('../../util/Util'); const { DEVIANTART_ID, DEVIANTART_SECRET } = process.env; diff --git a/commands/search/esrb.js b/commands/search/esrb.js index a3600d7f..b8f3a817 100644 --- a/commands/search/esrb.js +++ b/commands/search/esrb.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const path = require('path'); diff --git a/commands/search/flickr.js b/commands/search/flickr.js index 27b8e453..8091da69 100644 --- a/commands/search/flickr.js +++ b/commands/search/flickr.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { isImageNSFW } = require('../../util/Util'); const { FLICKR_KEY } = process.env; diff --git a/commands/search/frinkiac.js b/commands/search/frinkiac.js index ed910fce..be932572 100644 --- a/commands/search/frinkiac.js +++ b/commands/search/frinkiac.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const moment = require('moment'); const { base64 } = require('../../util/Util'); diff --git a/commands/search/giphy.js b/commands/search/giphy.js index 7a197a7d..e45e81a1 100644 --- a/commands/search/giphy.js +++ b/commands/search/giphy.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { GIPHY_KEY } = process.env; diff --git a/commands/search/google-autofill.js b/commands/search/google-autofill.js index dbd03e82..663861ce 100644 --- a/commands/search/google-autofill.js +++ b/commands/search/google-autofill.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class GoogleAutofillCommand extends Command { diff --git a/commands/search/google.js b/commands/search/google.js index e1767f17..7c8b4403 100644 --- a/commands/search/google.js +++ b/commands/search/google.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const cheerio = require('cheerio'); const { URLSearchParams, URL } = require('url'); diff --git a/commands/search/gravatar.js b/commands/search/gravatar.js index 8c03d022..672afa7f 100644 --- a/commands/search/gravatar.js +++ b/commands/search/gravatar.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { hash } = require('../../util/Util'); diff --git a/commands/search/http-cat.js b/commands/search/http-cat.js index 267e041e..2184187a 100644 --- a/commands/search/http-cat.js +++ b/commands/search/http-cat.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class HttpCatCommand extends Command { diff --git a/commands/search/http-dog.js b/commands/search/http-dog.js index 3fc146ac..36599baa 100644 --- a/commands/search/http-dog.js +++ b/commands/search/http-dog.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class HttpDogCommand extends Command { diff --git a/commands/search/http-duck.js b/commands/search/http-duck.js index a39acbf8..53b29d28 100644 --- a/commands/search/http-duck.js +++ b/commands/search/http-duck.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class HttpDuckCommand extends Command { diff --git a/commands/search/imgur.js b/commands/search/imgur.js index 16f1b245..630f3654 100644 --- a/commands/search/imgur.js +++ b/commands/search/imgur.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { IMGUR_KEY } = process.env; diff --git a/commands/search/itunes.js b/commands/search/itunes.js index ce20fb97..70a5f84b 100644 --- a/commands/search/itunes.js +++ b/commands/search/itunes.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const moment = require('moment'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); diff --git a/commands/search/jisho.js b/commands/search/jisho.js index 1fdac928..bda50a44 100644 --- a/commands/search/jisho.js +++ b/commands/search/jisho.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { stripIndents } = require('common-tags'); diff --git a/commands/search/kickstarter.js b/commands/search/kickstarter.js index 36755ddd..2808d8ab 100644 --- a/commands/search/kickstarter.js +++ b/commands/search/kickstarter.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const moment = require('moment'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); diff --git a/commands/search/know-your-meme.js b/commands/search/know-your-meme.js index df48072e..8db07339 100644 --- a/commands/search/know-your-meme.js +++ b/commands/search/know-your-meme.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const cheerio = require('cheerio'); const { MessageEmbed } = require('discord.js'); diff --git a/commands/search/league-of-legends.js b/commands/search/league-of-legends.js index e4f1d7b1..17ed68b8 100644 --- a/commands/search/league-of-legends.js +++ b/commands/search/league-of-legends.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const buttons = ['Q', 'W', 'E', 'R']; diff --git a/commands/search/lyrics.js b/commands/search/lyrics.js index 1261b999..cae6d512 100644 --- a/commands/search/lyrics.js +++ b/commands/search/lyrics.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { shorten } = require('../../util/Util'); // eslint-disable-next-line max-len diff --git a/commands/search/mal-badges.js b/commands/search/mal-badges.js index 85aa146f..6488fadb 100644 --- a/commands/search/mal-badges.js +++ b/commands/search/mal-badges.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); diff --git a/commands/search/manga.js b/commands/search/manga.js index e80ee677..5e6fed79 100644 --- a/commands/search/manga.js +++ b/commands/search/manga.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const cheerio = require('cheerio'); diff --git a/commands/search/map.js b/commands/search/map.js index 173fbba7..4d636611 100644 --- a/commands/search/map.js +++ b/commands/search/map.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { GOOGLE_KEY } = process.env; diff --git a/commands/search/mayo-clinic.js b/commands/search/mayo-clinic.js index 955a8890..8ac75024 100644 --- a/commands/search/mayo-clinic.js +++ b/commands/search/mayo-clinic.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const cheerio = require('cheerio'); const { MessageEmbed } = require('discord.js'); diff --git a/commands/search/movie.js b/commands/search/movie.js index b517dc83..1596b660 100644 --- a/commands/search/movie.js +++ b/commands/search/movie.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const { shorten, pickWhenMany } = require('../../util/Util'); diff --git a/commands/search/nasa.js b/commands/search/nasa.js index bcd5ebf5..e703b61e 100644 --- a/commands/search/nasa.js +++ b/commands/search/nasa.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { MessageEmbed } = require('discord.js'); const { shorten, embedURL } = require('../../util/Util'); diff --git a/commands/search/neopet.js b/commands/search/neopet.js index f04e47f8..f82aaf30 100644 --- a/commands/search/neopet.js +++ b/commands/search/neopet.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { list } = require('../../util/Util'); const moods = { diff --git a/commands/search/neopets-item.js b/commands/search/neopets-item.js index 30dc250b..4d9cb921 100644 --- a/commands/search/neopets-item.js +++ b/commands/search/neopets-item.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { MessageEmbed } = require('discord.js'); const { formatNumber } = require('../../util/Util'); diff --git a/commands/search/osu.js b/commands/search/osu.js index b07a15d8..81c3e8ca 100644 --- a/commands/search/osu.js +++ b/commands/search/osu.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const { formatNumber } = require('../../util/Util'); diff --git a/commands/search/paladins.js b/commands/search/paladins.js index 150a2de8..ad919258 100644 --- a/commands/search/paladins.js +++ b/commands/search/paladins.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const moment = require('moment'); diff --git a/commands/search/periodic-table.js b/commands/search/periodic-table.js index f8e47504..364eb741 100644 --- a/commands/search/periodic-table.js +++ b/commands/search/periodic-table.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { createCanvas, loadImage } = require('canvas'); const path = require('path'); const { elements, colors } = require('../../assets/json/periodic-table'); diff --git a/commands/search/poem.js b/commands/search/poem.js index 26832b74..c08bc37d 100644 --- a/commands/search/poem.js +++ b/commands/search/poem.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { html } = require('common-tags'); const { shorten } = require('../../util/Util'); diff --git a/commands/search/pornhub.js b/commands/search/pornhub.js index 15c16b6b..54cb0849 100644 --- a/commands/search/pornhub.js +++ b/commands/search/pornhub.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const cheerio = require('cheerio'); diff --git a/commands/search/recipe.js b/commands/search/recipe.js index 6e2dc9ed..ecc6f90c 100644 --- a/commands/search/recipe.js +++ b/commands/search/recipe.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); diff --git a/commands/search/reddit.js b/commands/search/reddit.js index 19669942..098dc41e 100644 --- a/commands/search/reddit.js +++ b/commands/search/reddit.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const moment = require('moment'); diff --git a/commands/search/right-stuf.js b/commands/search/right-stuf.js index 854a5b8b..0ef18bdd 100644 --- a/commands/search/right-stuf.js +++ b/commands/search/right-stuf.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const { stripIndents } = require('common-tags'); diff --git a/commands/search/rotten-tomatoes.js b/commands/search/rotten-tomatoes.js index c6e37259..1c7d766c 100644 --- a/commands/search/rotten-tomatoes.js +++ b/commands/search/rotten-tomatoes.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const UserAgent = require('user-agents'); diff --git a/commands/search/rule.js b/commands/search/rule.js index f7fec54a..f589577a 100644 --- a/commands/search/rule.js +++ b/commands/search/rule.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const rules = require('../../assets/json/rule'); module.exports = class RuleCommand extends Command { diff --git a/commands/search/safebooru.js b/commands/search/safebooru.js index 4ac61553..abe6f044 100644 --- a/commands/search/safebooru.js +++ b/commands/search/safebooru.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class SafebooruCommand extends Command { diff --git a/commands/search/sakugabooru.js b/commands/search/sakugabooru.js index d963f7ff..54239bfc 100644 --- a/commands/search/sakugabooru.js +++ b/commands/search/sakugabooru.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { stripIndents } = require('common-tags'); diff --git a/commands/search/smash-bros.js b/commands/search/smash-bros.js index c388b72c..ecf61858 100644 --- a/commands/search/smash-bros.js +++ b/commands/search/smash-bros.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const Collection = require('@discordjs/collection'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); diff --git a/commands/search/steam.js b/commands/search/steam.js index 375078e9..6e14d0ab 100644 --- a/commands/search/steam.js +++ b/commands/search/steam.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const { formatNumber } = require('../../util/Util'); diff --git a/commands/search/stock-photo.js b/commands/search/stock-photo.js index 52f3fbba..23cfc591 100644 --- a/commands/search/stock-photo.js +++ b/commands/search/stock-photo.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { MessageEmbed } = require('discord.js'); const { shorten } = require('../../util/Util'); diff --git a/commands/search/stocks.js b/commands/search/stocks.js index ae7d4eee..d754ce4f 100644 --- a/commands/search/stocks.js +++ b/commands/search/stocks.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const { formatNumber } = require('../../util/Util'); diff --git a/commands/search/strain.js b/commands/search/strain.js index d097d05c..9954fc24 100644 --- a/commands/search/strain.js +++ b/commands/search/strain.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const cheerio = require('cheerio'); diff --git a/commands/search/tenor.js b/commands/search/tenor.js index f9b0811e..55ef3012 100644 --- a/commands/search/tenor.js +++ b/commands/search/tenor.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { TENOR_KEY } = process.env; diff --git a/commands/search/tumblr.js b/commands/search/tumblr.js index 24f021c7..9ffa65b2 100644 --- a/commands/search/tumblr.js +++ b/commands/search/tumblr.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const { formatNumber } = require('../../util/Util'); diff --git a/commands/search/tv-show.js b/commands/search/tv-show.js index 1e7b0646..45d41130 100644 --- a/commands/search/tv-show.js +++ b/commands/search/tv-show.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const { shorten, formatNumber, pickWhenMany } = require('../../util/Util'); diff --git a/commands/search/twitch.js b/commands/search/twitch.js index 65f17916..6d6adc63 100644 --- a/commands/search/twitch.js +++ b/commands/search/twitch.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const moment = require('moment'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); diff --git a/commands/search/twitter.js b/commands/search/twitter.js index e3eca1ac..3683eb87 100644 --- a/commands/search/twitter.js +++ b/commands/search/twitter.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const moment = require('moment'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); diff --git a/commands/search/urban.js b/commands/search/urban.js index 72986f62..fc46af35 100644 --- a/commands/search/urban.js +++ b/commands/search/urban.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const { shorten, formatNumber } = require('../../util/Util'); diff --git a/commands/search/usps-tracking.js b/commands/search/usps-tracking.js index 112a5a01..b0472841 100644 --- a/commands/search/usps-tracking.js +++ b/commands/search/usps-tracking.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { stripIndents } = require('common-tags'); const { homepage } = require('../../package'); diff --git a/commands/search/vocadb.js b/commands/search/vocadb.js index 3153e81e..977964e9 100644 --- a/commands/search/vocadb.js +++ b/commands/search/vocadb.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const moment = require('moment'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); diff --git a/commands/search/wattpad.js b/commands/search/wattpad.js index c59aa5ec..fe233ee1 100644 --- a/commands/search/wattpad.js +++ b/commands/search/wattpad.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const moment = require('moment'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); diff --git a/commands/search/weather.js b/commands/search/weather.js index 1cdffd31..ae7b9025 100644 --- a/commands/search/weather.js +++ b/commands/search/weather.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const { OPENWEATHERMAP_KEY } = process.env; diff --git a/commands/search/wikia.js b/commands/search/wikia.js index 4fa33feb..ef820f11 100644 --- a/commands/search/wikia.js +++ b/commands/search/wikia.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); diff --git a/commands/search/wikihow.js b/commands/search/wikihow.js index 888640f8..eb7964b1 100644 --- a/commands/search/wikihow.js +++ b/commands/search/wikihow.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { stripIndents } = require('common-tags'); diff --git a/commands/search/wikipedia.js b/commands/search/wikipedia.js index 4445682d..9bb95a26 100644 --- a/commands/search/wikipedia.js +++ b/commands/search/wikipedia.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const { shorten } = require('../../util/Util'); diff --git a/commands/search/xkcd.js b/commands/search/xkcd.js index a947a2f3..b899db93 100644 --- a/commands/search/xkcd.js +++ b/commands/search/xkcd.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const types = ['random', 'today']; diff --git a/commands/search/youtube.js b/commands/search/youtube.js index 3c080690..cdcef069 100644 --- a/commands/search/youtube.js +++ b/commands/search/youtube.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const moment = require('moment'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); diff --git a/commands/search/yu-gi-oh.js b/commands/search/yu-gi-oh.js index 9443f24a..2fa0347a 100644 --- a/commands/search/yu-gi-oh.js +++ b/commands/search/yu-gi-oh.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const { shorten, formatNumber } = require('../../util/Util'); diff --git a/commands/single/can-you-not.js b/commands/single/can-you-not.js index cd3964ca..8d9d6cdf 100644 --- a/commands/single/can-you-not.js +++ b/commands/single/can-you-not.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class CanYouNotCommand extends Command { constructor(client) { diff --git a/commands/single/cave.js b/commands/single/cave.js index 00e1f9f3..dbbddab7 100644 --- a/commands/single/cave.js +++ b/commands/single/cave.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const path = require('path'); const { list } = require('../../util/Util'); const types = ['default', 'steve']; diff --git a/commands/single/dark-light.js b/commands/single/dark-light.js index 04c2b341..36a5e6f6 100644 --- a/commands/single/dark-light.js +++ b/commands/single/dark-light.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const path = require('path'); const { list } = require('../../util/Util'); const types = ['default', 'moth', 'jojo', 'spoiler', 'nitro']; diff --git a/commands/single/eat-pant.js b/commands/single/eat-pant.js index aee71a58..8650debe 100644 --- a/commands/single/eat-pant.js +++ b/commands/single/eat-pant.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const path = require('path'); module.exports = class EatPantCommand extends Command { diff --git a/commands/single/eggs-get-laid.js b/commands/single/eggs-get-laid.js index 60458de2..4b08e899 100644 --- a/commands/single/eggs-get-laid.js +++ b/commands/single/eggs-get-laid.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const path = require('path'); module.exports = class EggsGetLaidCommand extends Command { diff --git a/commands/single/fly.js b/commands/single/fly.js index b29d9f31..92f5833d 100644 --- a/commands/single/fly.js +++ b/commands/single/fly.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const path = require('path'); module.exports = class FlyCommand extends Command { diff --git a/commands/single/give-flower.js b/commands/single/give-flower.js index a215d041..cc5ea4b5 100644 --- a/commands/single/give-flower.js +++ b/commands/single/give-flower.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class GiveFlowerCommand extends Command { constructor(client) { diff --git a/commands/single/hello-world.js b/commands/single/hello-world.js index 9173db90..86e4c306 100644 --- a/commands/single/hello-world.js +++ b/commands/single/hello-world.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class HelloWorldCommand extends Command { constructor(client) { diff --git a/commands/single/hi.js b/commands/single/hi.js index 369f24ac..faea96ec 100644 --- a/commands/single/hi.js +++ b/commands/single/hi.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class HiCommand extends Command { constructor(client) { diff --git a/commands/single/just-do-it.js b/commands/single/just-do-it.js index a12313c4..e7dd2635 100644 --- a/commands/single/just-do-it.js +++ b/commands/single/just-do-it.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class JustDoItCommand extends Command { constructor(client) { diff --git a/commands/single/lenny.js b/commands/single/lenny.js index 385076e4..15554214 100644 --- a/commands/single/lenny.js +++ b/commands/single/lenny.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class LennyCommand extends Command { constructor(client) { diff --git a/commands/single/rickroll.js b/commands/single/rickroll.js index d07182fe..a976d265 100644 --- a/commands/single/rickroll.js +++ b/commands/single/rickroll.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class RickrollCommand extends Command { constructor(client) { diff --git a/commands/single/spam.js b/commands/single/spam.js index a15ae50d..eefacd8d 100644 --- a/commands/single/spam.js +++ b/commands/single/spam.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const path = require('path'); module.exports = class SpamCommand extends Command { diff --git a/commands/single/tableflip.js b/commands/single/tableflip.js index 4357b375..cbf513de 100644 --- a/commands/single/tableflip.js +++ b/commands/single/tableflip.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { delay } = require('../../util/Util'); const frames = [ '(-°□°)- ┬─┬', diff --git a/commands/single/where-is-everybody.js b/commands/single/where-is-everybody.js index d31f45dc..a70a7495 100644 --- a/commands/single/where-is-everybody.js +++ b/commands/single/where-is-everybody.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const path = require('path'); const { delay } = require('../../util/Util'); diff --git a/commands/single/wynaut.js b/commands/single/wynaut.js index 8eff9ea8..b34329cc 100644 --- a/commands/single/wynaut.js +++ b/commands/single/wynaut.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const path = require('path'); module.exports = class WynautCommand extends Command { diff --git a/commands/single/yoff.js b/commands/single/yoff.js index b5856115..fe90bfab 100644 --- a/commands/single/yoff.js +++ b/commands/single/yoff.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const path = require('path'); const { list } = require('../../util/Util'); const types = ['default', 'blastyoff', 'disyoffjs', 'yoffcirius', 'yoffice', 'yofficer', 'gameyoff']; diff --git a/commands/util-public/changelog.js b/commands/util-public/changelog.js index 84110adc..f7d7a50f 100644 --- a/commands/util-public/changelog.js +++ b/commands/util-public/changelog.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const { shorten, embedURL } = require('../../util/Util'); diff --git a/commands/util-public/cloc.js b/commands/util-public/cloc.js index f5fc8449..181dc0bb 100644 --- a/commands/util-public/cloc.js +++ b/commands/util-public/cloc.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const { formatNumber } = require('../../util/Util'); const { promisify } = require('util'); diff --git a/commands/util-public/command-leaderboard.js b/commands/util-public/command-leaderboard.js index f5a3edce..80ac78a1 100644 --- a/commands/util-public/command-leaderboard.js +++ b/commands/util-public/command-leaderboard.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const { formatNumber } = require('../../util/Util'); diff --git a/commands/util-public/credit.js b/commands/util-public/credit.js index f36fee51..421037f0 100644 --- a/commands/util-public/credit.js +++ b/commands/util-public/credit.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const { embedURL } = require('../../util/Util'); diff --git a/commands/util-public/donate.js b/commands/util-public/donate.js index 3f4c3c88..77d49673 100644 --- a/commands/util-public/donate.js +++ b/commands/util-public/donate.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); module.exports = class DonateCommand extends Command { diff --git a/commands/util-public/group-leaderboard.js b/commands/util-public/group-leaderboard.js index 986985df..579a3fe5 100644 --- a/commands/util-public/group-leaderboard.js +++ b/commands/util-public/group-leaderboard.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const { formatNumber } = require('../../util/Util'); diff --git a/commands/util-public/help.js b/commands/util-public/help.js index db94fb4b..927ff89e 100644 --- a/commands/util-public/help.js +++ b/commands/util-public/help.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const permissions = require('../../assets/json/permission-names'); const { stripIndents } = require('common-tags'); diff --git a/commands/util-public/high-scores.js b/commands/util-public/high-scores.js index 5ee53087..6bd37c8f 100644 --- a/commands/util-public/high-scores.js +++ b/commands/util-public/high-scores.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const moment = require('moment'); require('moment-duration-format'); diff --git a/commands/util-public/info.js b/commands/util-public/info.js index ed315279..b86b4abf 100644 --- a/commands/util-public/info.js +++ b/commands/util-public/info.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed, version: djsVersion } = require('discord.js'); const moment = require('moment'); require('moment-duration-format'); diff --git a/commands/util-public/invite.js b/commands/util-public/invite.js index a8cb04e4..94f8477a 100644 --- a/commands/util-public/invite.js +++ b/commands/util-public/invite.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const permissions = require('../../assets/json/permissions'); diff --git a/commands/util-public/last-run-leaderboard.js b/commands/util-public/last-run-leaderboard.js index c61b4bcd..dbc5514a 100644 --- a/commands/util-public/last-run-leaderboard.js +++ b/commands/util-public/last-run-leaderboard.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const moment = require('moment'); diff --git a/commands/util-public/last-run.js b/commands/util-public/last-run.js index 3ba7ef8b..8bcd2838 100644 --- a/commands/util-public/last-run.js +++ b/commands/util-public/last-run.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const moment = require('moment'); module.exports = class LastRunCommand extends Command { diff --git a/commands/util-public/options.js b/commands/util-public/options.js index 8823e3c6..0a9f0839 100644 --- a/commands/util-public/options.js +++ b/commands/util-public/options.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); module.exports = class OptionsCommand extends Command { diff --git a/commands/util-public/ping.js b/commands/util-public/ping.js index d5e676fc..0fad1d3e 100644 --- a/commands/util-public/ping.js +++ b/commands/util-public/ping.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { stripIndents } = require('common-tags'); const { formatNumber } = require('../../util/Util'); diff --git a/commands/util-public/prefix.js b/commands/util-public/prefix.js index db7872cf..ea05c9d0 100644 --- a/commands/util-public/prefix.js +++ b/commands/util-public/prefix.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class PrefixCommand extends Command { constructor(client) { diff --git a/commands/util-public/report.js b/commands/util-public/report.js index c77bfbbb..f996dad7 100644 --- a/commands/util-public/report.js +++ b/commands/util-public/report.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const { list } = require('../../util/Util'); const reasons = ['bug', 'feedback', 'suggestion', 'abuse']; diff --git a/commands/util-public/unknown-command.js b/commands/util-public/unknown-command.js index 16632925..b64b286c 100644 --- a/commands/util-public/unknown-command.js +++ b/commands/util-public/unknown-command.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { default: didYouMean, ReturnTypeEnums } = require('didyoumean2'); const { stripIndents } = require('common-tags'); diff --git a/commands/util-public/uses.js b/commands/util-public/uses.js index 4f5f2516..b2ed0de0 100644 --- a/commands/util-public/uses.js +++ b/commands/util-public/uses.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { formatNumber } = require('../../util/Util'); module.exports = class UsesCommand extends Command { diff --git a/commands/util-voice/join.js b/commands/util-voice/join.js index 17efde17..33d886ab 100644 --- a/commands/util-voice/join.js +++ b/commands/util-voice/join.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class JoinCommand extends Command { constructor(client) { diff --git a/commands/util-voice/leave.js b/commands/util-voice/leave.js index 74139fce..ea5fdd07 100644 --- a/commands/util-voice/leave.js +++ b/commands/util-voice/leave.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class LeaveCommand extends Command { constructor(client) { diff --git a/commands/util-voice/pause.js b/commands/util-voice/pause.js index 55b6d555..a30c506b 100644 --- a/commands/util-voice/pause.js +++ b/commands/util-voice/pause.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class PauseCommand extends Command { constructor(client) { diff --git a/commands/util-voice/resume.js b/commands/util-voice/resume.js index 854e6332..91867ef6 100644 --- a/commands/util-voice/resume.js +++ b/commands/util-voice/resume.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class ResumeCommand extends Command { constructor(client) { diff --git a/commands/util-voice/stop.js b/commands/util-voice/stop.js index 044c5182..a7a39bef 100644 --- a/commands/util-voice/stop.js +++ b/commands/util-voice/stop.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class StopCommand extends Command { constructor(client) { diff --git a/commands/util/blacklist.js b/commands/util/blacklist.js index 19040161..66411501 100644 --- a/commands/util/blacklist.js +++ b/commands/util/blacklist.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { list } = require('../../util/Util'); const types = ['user', 'guild']; diff --git a/commands/util/command-last-run-export.js b/commands/util/command-last-run-export.js index 238c6ecb..ef424b39 100644 --- a/commands/util/command-last-run-export.js +++ b/commands/util/command-last-run-export.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class CommandLastRunExportCommand extends Command { constructor(client) { diff --git a/commands/util/command-leaderboard-export.js b/commands/util/command-leaderboard-export.js index 2f398af4..1f60f595 100644 --- a/commands/util/command-leaderboard-export.js +++ b/commands/util/command-leaderboard-export.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class CommandLeaderboardExportCommand extends Command { constructor(client) { diff --git a/commands/util/dependency-update.js b/commands/util/dependency-update.js index bf3f9ad5..beb30168 100644 --- a/commands/util/dependency-update.js +++ b/commands/util/dependency-update.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const semver = require('semver'); const { stripIndents } = require('common-tags'); diff --git a/commands/util/eval.js b/commands/util/eval.js index 9df2d7b6..655e7c09 100644 --- a/commands/util/eval.js +++ b/commands/util/eval.js @@ -3,7 +3,7 @@ const util = require('util'); const discord = require('discord.js'); const tags = require('common-tags'); const { escapeRegex } = require('../../util/Util'); -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const nl = '!!NL!!'; const nlPattern = new RegExp(nl, 'g'); diff --git a/commands/util/exec.js b/commands/util/exec.js index 3af6be71..e02e043a 100644 --- a/commands/util/exec.js +++ b/commands/util/exec.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { exec } = require('child_process'); const { promisify } = require('util'); const execAsync = promisify(exec); diff --git a/commands/util/force-patron.js b/commands/util/force-patron.js index 2ea8539c..23949b4a 100644 --- a/commands/util/force-patron.js +++ b/commands/util/force-patron.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class ForcePatronCommand extends Command { constructor(client) { diff --git a/commands/util/generate-commands.js b/commands/util/generate-commands.js index 8eec090f..19c23838 100644 --- a/commands/util/generate-commands.js +++ b/commands/util/generate-commands.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class GenerateCommandsCommand extends Command { constructor(client) { diff --git a/commands/util/generate-process-env.js b/commands/util/generate-process-env.js index 66ab48ae..2aa27536 100644 --- a/commands/util/generate-process-env.js +++ b/commands/util/generate-process-env.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const fs = require('fs'); const path = require('path'); diff --git a/commands/util/ip.js b/commands/util/ip.js index 98422d28..fbc5608f 100644 --- a/commands/util/ip.js +++ b/commands/util/ip.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); module.exports = class IpCommand extends Command { diff --git a/commands/util/reload.js b/commands/util/reload.js index e56e4f5f..9b3f14f0 100644 --- a/commands/util/reload.js +++ b/commands/util/reload.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class ReloadCommand extends Command { constructor(client) { diff --git a/commands/util/report-respond.js b/commands/util/report-respond.js index 7a98b63a..9829a888 100644 --- a/commands/util/report-respond.js +++ b/commands/util/report-respond.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const { list } = require('../../util/Util'); const types = ['reject', 'info', 'approve']; diff --git a/commands/util/set-uses.js b/commands/util/set-uses.js index 91aad943..febef99a 100644 --- a/commands/util/set-uses.js +++ b/commands/util/set-uses.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const modes = ['add', 'subtract', 'exact']; const modeDesc = { add: 'Added', diff --git a/commands/util/shutdown.js b/commands/util/shutdown.js index 77c122e4..b5e3770a 100644 --- a/commands/util/shutdown.js +++ b/commands/util/shutdown.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { verify, list } = require('../../util/Util'); const texts = require('../../assets/json/shutdown'); diff --git a/commands/util/unblacklist.js b/commands/util/unblacklist.js index ddd6db81..7a6291c4 100644 --- a/commands/util/unblacklist.js +++ b/commands/util/unblacklist.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { list, removeFromArray } = require('../../util/Util'); const types = ['user', 'guild']; diff --git a/commands/util/unforce-patron.js b/commands/util/unforce-patron.js index 825a62b1..28975d03 100644 --- a/commands/util/unforce-patron.js +++ b/commands/util/unforce-patron.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { removeFromArray } = require('../../util/Util'); module.exports = class UnforcePatronCommand extends Command { diff --git a/commands/util/webhook.js b/commands/util/webhook.js index 54d8b931..8b159611 100644 --- a/commands/util/webhook.js +++ b/commands/util/webhook.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); module.exports = class WebhookCommand extends Command { constructor(client) { diff --git a/commands/voice/airhorn.js b/commands/voice/airhorn.js index 2831b96c..310792d3 100644 --- a/commands/voice/airhorn.js +++ b/commands/voice/airhorn.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const path = require('path'); const { reactIfAble } = require('../../util/Util'); const fs = require('fs'); diff --git a/commands/voice/animalese.js b/commands/voice/animalese.js index 757c955b..c248845d 100644 --- a/commands/voice/animalese.js +++ b/commands/voice/animalese.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const path = require('path'); const { reactIfAble, list } = require('../../util/Util'); const fs = require('fs'); diff --git a/commands/voice/dec-talk.js b/commands/voice/dec-talk.js index d272e5a7..35c7e57e 100644 --- a/commands/voice/dec-talk.js +++ b/commands/voice/dec-talk.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { Readable } = require('stream'); const { exec } = require('child_process'); const { promisify } = require('util'); diff --git a/commands/voice/mindfulness.js b/commands/voice/mindfulness.js index f0405a8c..f39206df 100644 --- a/commands/voice/mindfulness.js +++ b/commands/voice/mindfulness.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { Readable } = require('stream'); const { reactIfAble } = require('../../util/Util'); diff --git a/commands/voice/play.js b/commands/voice/play.js index d19c65c0..6cf5212d 100644 --- a/commands/voice/play.js +++ b/commands/voice/play.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const ytdl = require('ytdl-core'); diff --git a/commands/voice/soundboard.js b/commands/voice/soundboard.js index d3ddfd74..bf46e365 100644 --- a/commands/voice/soundboard.js +++ b/commands/voice/soundboard.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const path = require('path'); const { list, reactIfAble } = require('../../util/Util'); const sounds = require('../../assets/json/soundboard'); diff --git a/commands/voice/tts.js b/commands/voice/tts.js index 75ec8890..2b0833be 100644 --- a/commands/voice/tts.js +++ b/commands/voice/tts.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { Readable } = require('stream'); const { reactIfAble, list } = require('../../util/Util'); diff --git a/commands/voice/vocodes.js b/commands/voice/vocodes.js index 51d7f9a3..a6ead19f 100644 --- a/commands/voice/vocodes.js +++ b/commands/voice/vocodes.js @@ -1,4 +1,4 @@ -const Command = require('../../structures/Command'); +const Command = require('../../framework/Command'); const request = require('node-superfetch'); const { Readable } = require('stream'); const { list, reactIfAble } = require('../../util/Util');