Clean-ups

This commit is contained in:
Daniel Odendahl Jr
2017-08-16 16:06:06 +00:00
parent df12a04489
commit 218c8aa0fa
43 changed files with 98 additions and 127 deletions
+1 -2
View File
@@ -19,7 +19,6 @@ module.exports = class ReverseCommand extends Command {
run(msg, args) {
const { text } = args;
const converted = text.split('').reverse().join('');
return msg.say(`\u180E${converted}`);
return msg.say(text.split('').reverse().join(''));
}
};