Compare commits
2 Commits
23e7cbe712
...
a573aef9e3
Author | SHA1 | Date | |
---|---|---|---|
a573aef9e3 | |||
56b7218b80 |
|
@ -193,6 +193,11 @@ function selectOperator(o: OperatorType): void {
|
|||
function reboot(): void {
|
||||
gameState.value = GameStateType.Playing
|
||||
|
||||
if (gameDifficulty.value === GameDifficultyType.Hard) {
|
||||
// Run an empty rand() call to make sure that both Normal and Hard have different expected results
|
||||
random()
|
||||
}
|
||||
|
||||
const minValue = 101
|
||||
const numPlaquettes = isHardMode.value || isPracticeMode.value ? 6 : 5
|
||||
do {
|
||||
|
|
|
@ -29,7 +29,7 @@ export default defineConfig({
|
|||
manifest: {
|
||||
name: 'N0mbers',
|
||||
short_name: 'N0mbers',
|
||||
description: 'Reach the result in five operations or less',
|
||||
description: 'Reach the result in five operations or fewer',
|
||||
theme_color: '#198A42',
|
||||
icons: [
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue
Block a user