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
@@ -23,8 +23,7 @@ module.exports = class BinaryCommand extends Command {
run(msg, args) {
const { text } = args;
const converted = this.binary(text);
return msg.say(converted);
return msg.say(this.binary(text));
}
binary(text) {