From d09f79d52454e5bf43ca34e23d0bd2d6131f25c6 Mon Sep 17 00:00:00 2001 From: MasterGordon Date: Wed, 4 Mar 2026 23:40:04 +0100 Subject: [PATCH] adjussted percentage more --- 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 cae8ad9..d5caa71 100644 --- a/backend/entities/game.ts +++ b/backend/entities/game.ts @@ -57,7 +57,7 @@ const expandBoard = (serverGame: ServerGame) => { const newHeight = Math.floor(Math.min(height + 7, height * 1.5)); const newWidth = width; 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 }, () =>