diff --git a/commands/roleplay/cuddle.js b/commands/roleplay/cuddle.js index 6313a514..8d52757b 100644 --- a/commands/roleplay/cuddle.js +++ b/commands/roleplay/cuddle.js @@ -17,6 +17,6 @@ module.exports = class CuddleCommand extends commando.Command { } console.log(`[Command] ${message.content}`); let thingToRoleplay = message.content.split(" ").slice(1).join(" "); - message.channel.send(`${message.author} *cuddles* ${thingToRoleplay}`); + return message.channel.send(`${message.author} *cuddles* ${thingToRoleplay}`); } };