diff options
author | elioat <elioat@tilde.institute> | 2024-12-08 10:24:00 -0500 |
---|---|---|
committer | elioat <elioat@tilde.institute> | 2024-12-08 10:24:00 -0500 |
commit | caaab036743d41f556d7a5c469a078cc23079d34 (patch) | |
tree | 8e3fcecf14c06fa8fff39be63418826e3ae1532b /html/mountain | |
parent | 6bbaa02746ac49cf4e6b1cc02df657ffb59b18ea (diff) | |
download | tour-caaab036743d41f556d7a5c469a078cc23079d34.tar.gz |
*
Diffstat (limited to 'html/mountain')
-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(); |