Remove useless aliases, bug fixes

This commit is contained in:
Daniel Odendahl Jr
2018-11-03 18:21:19 +00:00
parent 01bc93b1ba
commit f9c37e7ea6
146 changed files with 206 additions and 312 deletions
+1 -2
View File
@@ -1,7 +1,7 @@
const Command = require('../../structures/Command');
const { stripIndents } = require('common-tags');
const { list } = require('../../util/Util');
const sentences = require('../../assets/json/typing-game');
const sentences = require('../../assets/json/typing-test');
const difficulties = ['easy', 'medium', 'hard', 'extreme', 'impossible'];
const times = {
easy: 25000,
@@ -15,7 +15,6 @@ module.exports = class TypingTestCommand extends Command {
constructor(client) {
super(client, {
name: 'typing-test',
aliases: ['typing-game'],
group: 'games',
memberName: 'typing-test',
description: 'See how fast you can type a sentence in a given time limit.',