From 5e71af60725ab9ae39a89804aff1924fe121a3bf Mon Sep 17 00:00:00 2001 From: Skylar Grant Date: Mon, 27 Jan 2025 15:03:35 -0500 Subject: [PATCH] Changed joint reply to standalone msg --- dot-commands/joint.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dot-commands/joint.js b/dot-commands/joint.js index c169f2c..301bbe8 100644 --- a/dot-commands/joint.js +++ b/dot-commands/joint.js @@ -26,7 +26,7 @@ module.exports = { joint = joints[randIndex]; } // Send the joint - message.reply(`${joints[randIndex]} ${emoji.joint}`); + message.channel.send(`${joints[randIndex]} ${emoji.joint}`); // Check how full the roach collection is if (message.client.roaches.size / joints.length >= 0.85) { // If the roach collection is 85% of the joints collection @@ -36,4 +36,4 @@ module.exports = { // Add the joint to the roach collection message.client.roaches.set(joint, "baked"); } -} \ No newline at end of file +}