Reverse upside down typing text

This commit is contained in:
Daniel Odendahl Jr
2018-09-09 15:09:01 +00:00
parent 20bcaab8fc
commit 7af357dfc6
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -21,6 +21,6 @@ module.exports = class UpsideDownCommand extends Command {
}
run(msg, { text }) {
return msg.say(letterTrans(text, dictionary));
return msg.say(letterTrans(text, dictionary).split('').reverse().join(''));
}
};