From e29646c95334ea4616ded481a0ec3dd3b4ef8797 Mon Sep 17 00:00:00 2001 From: RoughCactus69420 Date: Sat, 9 Dec 2023 22:12:47 -0600 Subject: [PATCH] Changed daily and weekly coin ammounts. --- index.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/index.js b/index.js index d336650..9bc310f 100644 --- a/index.js +++ b/index.js @@ -738,11 +738,11 @@ client.on("interactionCreate", async interaction => { } // 24 hours setCooldown(interaction.user, "daily", 24 * 60 * 60 * 1000) - await checkAndModifyPoints(interaction.user, 2); + await checkAndModifyPoints(interaction.user, 1); interaction.reply({ embeds: [{ title: "Daily", - description: `You got 2 coins!`, + description: `You got 1 coin!`, color: 0x00ff00 }] }); @@ -757,11 +757,11 @@ client.on("interactionCreate", async interaction => { } // 7 days setCooldown(interaction.user, "weekly", 7 * 24 * 60 * 60 * 1000) - await checkAndModifyPoints(interaction.user, 14); + await checkAndModifyPoints(interaction.user, 4); interaction.reply({ embeds: [{ title: "Weekly", - description: `You got 14 coins!`, + description: `You got 4 coins!`, color: 0x00ff00 }] });