Skip to content

Commit

Permalink
Update coinflip.js
Browse files Browse the repository at this point in the history
  • Loading branch information
GrishMahat authored May 31, 2024
1 parent eb01016 commit 5cdbafa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/economy/coinflip.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default {
const userId = interaction.user.id;
const rollResult = interaction.options.getString('roll_result');
const gambleAmount = interaction.options.getInteger('gamble_amount');
const hourlyCooldown = 60 * 60 * 1000; // 1 hour in milliseconds
const hourlyCooldown = 10 * 60 * 1000; // 1 hour in milliseconds

if (gambleAmount < 1 || gambleAmount > 25) {
const embed = new EmbedBuilder().setDescription('The bet amount must be between 1 and 25 clienterr coins.');
Expand Down

0 comments on commit 5cdbafa

Please sign in to comment.