Let's try this

This commit is contained in:
Daniel Odendahl Jr
2017-03-23 11:56:18 +00:00
parent 0afeb82d1f
commit 268f8961b0
+1 -1
View File
@@ -17,6 +17,6 @@ module.exports = class CuddleCommand extends commando.Command {
} }
console.log(`[Command] ${message.content}`); console.log(`[Command] ${message.content}`);
let thingToRoleplay = message.content.split(" ").slice(1).join(" "); let thingToRoleplay = message.content.split(" ").slice(1).join(" ");
message.channel.send(`${message.author} *cuddles* ${thingToRoleplay}`); return message.channel.send(`${message.author} *cuddles* ${thingToRoleplay}`);
} }
}; };