From f533806fdda3fb83b0ef6ca2fee19abc053515bc Mon Sep 17 00:00:00 2001 From: Pretid Date: Tue, 21 May 2024 11:38:45 +0200 Subject: [PATCH] Update index.html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 56ba877..189176d 100644 --- a/index.html +++ b/index.html @@ -207,7 +207,7 @@

Congratulations, You Won!

} function checkWinner(slot1, slot2, slot3) { - const winProbability = 0.5; // 1% chance to win + const winProbability = 1; // 1% chance to win const randomChance = Math.random(); if (slot1 === slot2 && slot2 === slot3 && randomChance < winProbability) { document.getElementById("winner-modal").style.display = "flex";