forked from Supositware/Haha-Yes
fixed dumb error
This commit is contained in:
parent
c97a9d4ad4
commit
5add6418f4
29 changed files with 30 additions and 29 deletions
|
@ -2,7 +2,7 @@ const { Command } = require('discord.js-commando');
|
|||
const Discord = require('discord.js');
|
||||
const fetch = require('node-fetch')
|
||||
const SelfReloadJSON = require('self-reload-json');
|
||||
const blacklist = require('../../blacklist');
|
||||
const blacklist = require('blacklist');
|
||||
|
||||
module.exports = class AdviceCommand extends Command {
|
||||
constructor(client) {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
const { Command } = require('discord.js-commando');
|
||||
const fetch = require('node-fetch')
|
||||
const SelfReloadJSON = require('self-reload-json');
|
||||
const blacklist = require('../../blacklist');
|
||||
const blacklist = require('blacklist');
|
||||
|
||||
module.exports = class BadMemeCommand extends Command {
|
||||
constructor(client) {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
const { Command } = require('discord.js-commando');
|
||||
const SelfReloadJSON = require('self-reload-json');
|
||||
const blacklist = require('../../blacklist');
|
||||
const blacklist = require('blacklist');
|
||||
module.exports = class clapCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
const { Command } = require('discord.js-commando');
|
||||
const responseObject = require("../../json/randVid.json");
|
||||
const SelfReloadJSON = require('self-reload-json');
|
||||
const blacklist = require('../../blacklist');
|
||||
const blacklist = require('blacklist');
|
||||
module.exports = class dankCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
|
|
|
@ -4,7 +4,7 @@ const { createCanvas, loadImage, getContext } = require('canvas')
|
|||
const superagent = require('superagent')
|
||||
const Discord = require('discord.js');
|
||||
const SelfReloadJSON = require('self-reload-json');
|
||||
const blacklist = require('../../blacklist');
|
||||
const blacklist = require('blacklist');
|
||||
module.exports = class DespacitoCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
const { Command } = require('discord.js-commando');
|
||||
const emojiCharacters = require('../../emojiCharacters');
|
||||
const SelfReloadJSON = require('self-reload-json');
|
||||
const blacklist = require('../../blacklist');
|
||||
const blacklist = require('blacklist');
|
||||
module.exports = class emoteSayCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
const { Command } = require('discord.js-commando');
|
||||
const responseObject = require("../../json/funfact.json");
|
||||
const SelfReloadJSON = require('self-reload-json');
|
||||
const blacklist = require('../../blacklist');
|
||||
const blacklist = require('blacklist');
|
||||
module.exports = class FunFactCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
const { Command } = require('discord.js-commando');
|
||||
const fetch = require('node-fetch')
|
||||
const SelfReloadJSON = require('self-reload-json');
|
||||
const blacklist = require('../../blacklist');
|
||||
const blacklist = require('blacklist');
|
||||
|
||||
module.exports = class BadMemeCommand extends Command {
|
||||
constructor(client) {
|
||||
|
|
|
@ -2,7 +2,8 @@ const { Command } = require('discord.js-commando');
|
|||
const printer = require('printer');
|
||||
const { printChannel } = require('../../config.json');
|
||||
const SelfReloadJSON = require('self-reload-json');
|
||||
const blacklist = require('../../blacklist');module.exports = class printCommand extends Command {
|
||||
const blacklist = require('blacklist');
|
||||
module.exports = class printCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'print',
|
||||
|
|
|
@ -2,7 +2,7 @@ const { Command } = require('discord.js-commando');
|
|||
const Discord = require('discord.js');
|
||||
const fetch = require('node-fetch');
|
||||
const SelfReloadJSON = require('self-reload-json');
|
||||
const blacklist = require('../../blacklist');
|
||||
const blacklist = require('blacklist');
|
||||
module.exports = class redditCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
const { Command } = require('discord.js-commando');
|
||||
const SelfReloadJSON = require('self-reload-json');
|
||||
const blacklist = require('../../blacklist');
|
||||
const blacklist = require('blacklist');
|
||||
module.exports = class sayCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
|
|
|
@ -2,7 +2,7 @@ const { Command } = require('discord.js-commando');
|
|||
const faceapp = require('faceapp')
|
||||
const superagent = require('superagent')
|
||||
const SelfReloadJSON = require('self-reload-json');
|
||||
const blacklist = require('../../blacklist');
|
||||
const blacklist = require('blacklist');
|
||||
|
||||
module.exports = class faceappCommand extends Command {
|
||||
constructor(client) {
|
||||
|
|
|
@ -3,7 +3,7 @@ const Discord = require('discord.js');
|
|||
const { createCanvas, loadImage, getContext } = require('canvas')
|
||||
const superagent = require('superagent')
|
||||
const SelfReloadJSON = require('self-reload-json');
|
||||
const blacklist = require('../../blacklist');
|
||||
const blacklist = require('blacklist');
|
||||
|
||||
|
||||
module.exports = class fetishCommand extends Command {
|
||||
|
|
|
@ -3,7 +3,7 @@ const Discord = require('discord.js');
|
|||
const { createCanvas, loadImage, getContext } = require('canvas')
|
||||
const superagent = require('superagent')
|
||||
const SelfReloadJSON = require('self-reload-json');
|
||||
const blacklist = require('../../blacklist');
|
||||
const blacklist = require('blacklist');
|
||||
|
||||
|
||||
module.exports = class godCommand extends Command {
|
||||
|
|
|
@ -3,7 +3,7 @@ const Discord = require('discord.js');
|
|||
const { createCanvas, loadImage, getContext } = require('canvas')
|
||||
const superagent = require('superagent')
|
||||
const SelfReloadJSON = require('self-reload-json');
|
||||
const blacklist = require('../../blacklist');
|
||||
const blacklist = require('blacklist');
|
||||
|
||||
|
||||
module.exports = class humanCommand extends Command {
|
||||
|
|
|
@ -3,7 +3,7 @@ const Discord = require('discord.js');
|
|||
const { createCanvas, loadImage, getContext } = require('canvas')
|
||||
const superagent = require('superagent')
|
||||
const SelfReloadJSON = require('self-reload-json');
|
||||
const blacklist = require('../../blacklist');
|
||||
const blacklist = require('blacklist');
|
||||
|
||||
|
||||
module.exports = class idubbbzCommand extends Command {
|
||||
|
|
|
@ -3,7 +3,7 @@ const Discord = require('discord.js');
|
|||
const { createCanvas, loadImage, getContext } = require('canvas')
|
||||
const superagent = require('superagent')
|
||||
const SelfReloadJSON = require('self-reload-json');
|
||||
const blacklist = require('../../blacklist');
|
||||
const blacklist = require('blacklist');
|
||||
|
||||
|
||||
module.exports = class idubbbzpaintCommand extends Command {
|
||||
|
|
|
@ -3,7 +3,7 @@ const Discord = require('discord.js');
|
|||
const { createCanvas, loadImage, getContext } = require('canvas')
|
||||
const superagent = require('superagent')
|
||||
const SelfReloadJSON = require('self-reload-json');
|
||||
const blacklist = require('../../blacklist');
|
||||
const blacklist = require('blacklist');
|
||||
|
||||
|
||||
module.exports = class likeCommand extends Command {
|
||||
|
|
|
@ -3,7 +3,7 @@ const Discord = require('discord.js');
|
|||
const { createCanvas, loadImage, getContext } = require('canvas')
|
||||
const superagent = require('superagent')
|
||||
const SelfReloadJSON = require('self-reload-json');
|
||||
const blacklist = require('../../blacklist');
|
||||
const blacklist = require('blacklist');
|
||||
|
||||
|
||||
module.exports = class uglyCommand extends Command {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
const { Command } = require('discord.js-commando');
|
||||
const SelfReloadJSON = require('self-reload-json');
|
||||
const blacklist = require('../../blacklist');
|
||||
const blacklist = require('blacklist');
|
||||
|
||||
module.exports = class AvatarCommand extends Command {
|
||||
constructor(client) {
|
||||
|
|
|
@ -2,7 +2,7 @@ const { Command } = require('discord.js-commando');
|
|||
const fs = require('fs');
|
||||
const youtubedl = require('youtube-dl');
|
||||
const SelfReloadJSON = require('self-reload-json');
|
||||
const blacklist = require('../../blacklist');
|
||||
const blacklist = require('blacklist');
|
||||
const { fbuser, fbpasswd } = require('../../config.json');
|
||||
|
||||
module.exports = class downloadCommand extends Command {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
const { Command } = require('discord.js-commando');
|
||||
const { feedbackChannel } = require('../../config.json');
|
||||
const SelfReloadJSON = require('self-reload-json');
|
||||
const blacklist = require('../../blacklist');
|
||||
const blacklist = require('blacklist');
|
||||
const fs = require('fs');
|
||||
module.exports = class feedbackCommand extends Command {
|
||||
constructor(client) {
|
||||
|
|
|
@ -2,7 +2,7 @@ const { Command } = require('discord.js-commando');
|
|||
const Discord = require('discord.js');
|
||||
const fetch = require('node-fetch')
|
||||
const SelfReloadJSON = require('self-reload-json');
|
||||
const blacklist = require('../../blacklist');
|
||||
const blacklist = require('blacklist');
|
||||
module.exports = class InfoCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
const { Command } = require('discord.js-commando');
|
||||
const { supportServer } = require('../../config.json')
|
||||
const SelfReloadJSON = require('self-reload-json');
|
||||
const blacklist = require('../../blacklist');
|
||||
const blacklist = require('blacklist');
|
||||
module.exports = class InviteCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
const { oneLine } = require('common-tags');
|
||||
const { Command } = require('discord.js-commando');
|
||||
const SelfReloadJSON = require('self-reload-json');
|
||||
const blacklist = require('../../blacklist');
|
||||
const blacklist = require('blacklist');
|
||||
module.exports = class PingCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
const { Command } = require('discord.js-commando');
|
||||
const SelfReloadJSON = require('self-reload-json');
|
||||
const blacklist = require('../../blacklist');
|
||||
const blacklist = require('blacklist');
|
||||
module.exports = class ServerCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
const { Command } = require('discord.js-commando');
|
||||
const SelfReloadJSON = require('self-reload-json');
|
||||
const blacklist = require('../../blacklist');
|
||||
const blacklist = require('blacklist');
|
||||
module.exports = class statsCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
const { Command } = require('discord.js-commando');
|
||||
const SelfReloadJSON = require('self-reload-json');
|
||||
const blacklist = require('../../blacklist');
|
||||
const blacklist = require('blacklist');
|
||||
module.exports = class supportMeCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
const { Command } = require('discord.js-commando');
|
||||
const SelfReloadJSON = require('self-reload-json');
|
||||
const blacklist = require('../../blacklist');
|
||||
const blacklist = require('blacklist');
|
||||
module.exports = class UpDootCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
|
|
Loading…
Reference in a new issue