Skip to content

Commit

Permalink
lower pecrent
Browse files Browse the repository at this point in the history
  • Loading branch information
MasedMSD committed Oct 2, 2024
1 parent a367a54 commit 21ff8ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/handlers/randomEmoji.compose.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ export const randomEmojiComposer = new Composer();

randomEmojiComposer.on("message:text", async ctx => {
if (ctx.message.from.is_bot) return;
if (Math.random() < 0.09) return ctx.react("👀");
if (Math.random() < 0.01) return ctx.react("👀");
});

0 comments on commit 21ff8ec

Please sign in to comment.