structures -> util

This commit is contained in:
Daniel Odendahl Jr
2017-10-13 21:46:29 +00:00
parent adedb65c76
commit ffa05f01ff
43 changed files with 42 additions and 42 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
const { Command } = require('discord.js-commando');
const { wait } = require('../../structures/Util');
const { wait } = require('../../util/Util');
const words = ['fire', 'draw', 'shoot', 'bang', 'pull'];
module.exports = class GunfightCommand extends Command {
+1 -1
View File
@@ -1,6 +1,6 @@
const { Command } = require('discord.js-commando');
const { stripIndents } = require('common-tags');
const { list } = require('../../structures/Util');
const { list } = require('../../util/Util');
const difficulties = ['easy', 'medium', 'hard', 'extreme', 'impossible'];
const operations = ['+', '-', '*'];
const maxValues = {
+1 -1
View File
@@ -1,7 +1,7 @@
const { Command } = require('discord.js-commando');
const { stripIndents } = require('common-tags');
const snekfetch = require('snekfetch');
const { shuffle, list } = require('../../structures/Util');
const { shuffle, list } = require('../../util/Util');
const types = ['multiple', 'boolean'];
const difficulties = ['easy', 'medium', 'hard'];
+1 -1
View File
@@ -1,7 +1,7 @@
const { Command } = require('discord.js-commando');
const { stripIndents } = require('common-tags');
const snekfetch = require('snekfetch');
const { shuffle } = require('../../structures/Util');
const { shuffle } = require('../../util/Util');
const { QUIZLET_KEY } = process.env;
module.exports = class QuizletGameCommand extends Command {
+1 -1
View File
@@ -1,6 +1,6 @@
const { Command } = require('discord.js-commando');
const { stripIndents } = require('common-tags');
const { list } = require('../../structures/Util');
const { list } = require('../../util/Util');
const sentences = require('../../assets/json/typing-game');
const difficulties = ['easy', 'medium', 'hard', 'extreme', 'impossible'];
const times = {
+1 -1
View File
@@ -1,6 +1,6 @@
const { Command } = require('discord.js-commando');
const snekfetch = require('snekfetch');
const { filterPkmn, pad } = require('../../structures/Util');
const { filterPkmn, pad } = require('../../util/Util');
module.exports = class WhosThatPokemonCommand extends Command {
constructor(client) {