Skip to content

Commit 4615c9b

Browse files
luca-montaigutneolectron
authored andcommitted
fix: adjust coubeh probability (#65)
Co-authored-by: Manu <[email protected]>
1 parent b195d1d commit 4615c9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/modules/quoiFeur/quoiFeur.helpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export const reactOnEndWithQuoi = async (message: Message) => {
3232
const channelHasGame = channelIds.find((channelId) => channelId === message.channelId);
3333
if (!channelHasGame) return;
3434

35-
const probability = 1 / 20;
35+
const probability = 1 / 6;
3636

3737
if (Math.random() <= probability) {
3838
await reactWithCoubeh(message);

0 commit comments

Comments
 (0)