diff --git a/src/components/NorthcottsGame.tsx b/src/components/NorthcottsGame.tsx index 00e3616..583ddc2 100644 --- a/src/components/NorthcottsGame.tsx +++ b/src/components/NorthcottsGame.tsx @@ -237,7 +237,7 @@ const NorthcottsGame: React.FC = ({ showSocialShare = false const randomGame = () => { const rows = 3 + Math.floor(Math.random() * 8); // 3-10 const cols = 3 + Math.floor(Math.random() * 8); // 3-10 - setGameState(initializeGame(rows, cols, gameState.misereMode, false, gameState.forwardOnly)); + setGameState(initializeGame(rows, cols, gameState.misereMode, gameState.cleanStart, gameState.forwardOnly)); }; const toggleMisereMode = () => { @@ -347,7 +347,7 @@ const NorthcottsGame: React.FC = ({ showSocialShare = false {/* Board Size and Game Control Row */} -
+