Fix Stuff

This commit is contained in:
Daniel Odendahl Jr
2017-06-09 00:32:03 +00:00
parent c26f048911
commit 212ed27e3b
49 changed files with 385 additions and 396 deletions
+2 -2
View File
@@ -16,9 +16,9 @@ module.exports = class MockingCommand extends Command {
type: 'string',
validate: (text) => {
if (text.length < 1950) return true;
else return 'Invalid Text. Text must be under 1950 characters.';
else return 'Text must be under 1950 characters.';
},
parse: (text) => text.split('')
parse: (text) => text.toLowerCase().split('')
}
]
});