From c9a52f391ce75eee73c39b906217440eaf7d51f1 Mon Sep 17 00:00:00 2001 From: MasterGordon Date: Wed, 4 Mar 2026 23:37:38 +0100 Subject: [PATCH] adjusted percentage --- backend/entities/game.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/entities/game.ts b/backend/entities/game.ts index d8c6a36..cae8ad9 100644 --- a/backend/entities/game.ts +++ b/backend/entities/game.ts @@ -115,7 +115,7 @@ const expandBoard = (serverGame: ServerGame) => { const newWidth = Math.floor(Math.min(width + 7, width * 1.5)); const newHeight = height; const newMinesCount = Math.floor( - width * height * 0.5 * (0.2 + 0.0015 * stage), + width * height * 0.5 * (Math.log10(30 * stage) * 0.1), ); // expand mines array const newMines = Array.from({ length: newWidth }, () =>