diff options
-rw-r--r-- | html/mountain/game.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/html/mountain/game.js b/html/mountain/game.js index 3d09add..6c5737f 100644 --- a/html/mountain/game.js +++ b/html/mountain/game.js @@ -778,7 +778,7 @@ hardModeButton.addEventListener('click', () => { superHardModeButton.addEventListener('click', () => { superHardMode = !superHardMode; hardMode = false; - superHardModeButton.textContent = `SUPER Hard Mode: ${superHardMode ? 'ON' : 'OFF'}`; + superHardModeButton.textContent = `Super Hard Mode: ${superHardMode ? 'ON' : 'OFF'}`; hardModeButton.textContent = 'Hard Mode: OFF'; resetPlayer(); superHardModeButton.blur(); |