adjusted percentage

This commit is contained in:
MasterGordon 2026-03-04 23:37:38 +01:00
parent 52ee48bd86
commit c9a52f391c
1 changed files with 1 additions and 1 deletions

View File

@ -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 }, () =>