From 22c215f3c2ace58c278f895caaf84eef3bd49489 Mon Sep 17 00:00:00 2001 From: Skylar Grant Date: Fri, 24 Jan 2025 20:16:03 -0500 Subject: [PATCH 1/3] Coupla beers no beers --- dot-commands/joint.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dot-commands/joint.js b/dot-commands/joint.js index 9abc9d1..c169f2c 100644 --- a/dot-commands/joint.js +++ b/dot-commands/joint.js @@ -5,7 +5,9 @@ module.exports = { name: 'joint', description: 'Send a random weed-themed phrase.', usage: '.joint', - alias: ['bong', 'blunt', 'bowl', 'pipe', 'dab', 'vape', 'dabs', 'shatter', 'edible', 'edibles', 'doobie', 'spliff', 'gummy', 'gummies', 'hash', 'toke', 'big doinks'], + alias: ['bong', 'blunt', 'bowl', 'pipe', 'dab', 'vape', 'dabs', 'shatter', 'edible', 'edibles', 'doobie', 'spliff', 'gummy', 'gummies', 'hash', 'toke', 'big doinks', + 'drink', 'shot', 'shots', 'beer', 'beers', 'brew', 'brews', 'liquor', 'cocktail', 'cocktails', 'wine', 'wines', 'whiskey', 'whiskies', 'vodka', 'vodkas', 'rum', 'rums', 'cider', 'ciders', + ], execute(message, commandData) { let joints = []; // Create a simple array of the joint texts From e5889e3c63ba76a47f3bd1e5f74b55dae1087622 Mon Sep 17 00:00:00 2001 From: Skylar Grant Date: Fri, 24 Jan 2025 20:20:37 -0500 Subject: [PATCH 2/3] Versioning --- CHANGELOG.md | 5 ++++- package.json | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a89fa08..3f6670a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ ## v3.4.x -#### v3.4.1 +#### v3.4.2 (#28) +* Added `.drink` and aliases + +#### v3.4.1 (#27) * Adding command to change nicknames #### v3.4.0 (#25) diff --git a/package.json b/package.json index 558e5f5..1251782 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nodbot", - "version": "3.4.1", + "version": "3.4.2", "description": "Nods and Nod Accessories", "main": "main.js", "dependencies": { From 5e71af60725ab9ae39a89804aff1924fe121a3bf Mon Sep 17 00:00:00 2001 From: Skylar Grant Date: Mon, 27 Jan 2025 15:03:35 -0500 Subject: [PATCH 3/3] 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 +}