Fix Everything

This commit is contained in:
Daniel Odendahl Jr
2017-06-01 18:31:20 +00:00
parent 66706d9c7b
commit 4e1f83a30f
85 changed files with 721 additions and 851 deletions
+3 -3
View File
@@ -14,8 +14,7 @@ module.exports = class UpsideDownCommand extends Command {
{
key: 'text',
prompt: 'What text would you like to flip upside-down?',
type: 'string',
parse: (text) => letterTrans(text, dictionary)
type: 'string'
}
]
});
@@ -23,6 +22,7 @@ module.exports = class UpsideDownCommand extends Command {
run(msg, args) {
const { text } = args;
return msg.say(text);
const converted = letterTrans(text, dictionary);
return msg.say(converted);
}
};