aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNat Lasseter <user@4574.co.uk>2025-03-31 16:26:19 +0100
committerNat Lasseter <user@4574.co.uk>2025-03-31 16:26:19 +0100
commit47e232cf07d3a09b968df8877ae259f2f3ff7a27 (patch)
tree1d37fd00394bdc8304dd03e55021eb9678956db7
parent05e2fc671e9fd061950cd8166cc6b54847ca254f (diff)
[bracket shitty] fix cities and play button
-rw-r--r--static/bs/tutorial/tutorial.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/static/bs/tutorial/tutorial.js b/static/bs/tutorial/tutorial.js
index 3e89fdc..70dadcf 100644
--- a/static/bs/tutorial/tutorial.js
+++ b/static/bs/tutorial/tutorial.js
@@ -42,7 +42,7 @@ class BracketCityTutorial {
// Tutorial guidance messages for each step
this.tutorialSteps = [
{
- message: "In Bracket City you can solve <strong>any clue</strong> just by submitting an answer<div class='small-break'></div>No need to click, just type the answer to any <span class='spotlight'>highlighted clue</span> and hit enter!<div class='small-break'></div>Keep guessing until you get one!",
+ message: "In Bracket Shitty you can solve <strong>any clue</strong> just by submitting an answer<div class='small-break'></div>No need to click, just type the answer to any <span class='spotlight'>highlighted clue</span> and hit enter!<div class='small-break'></div>Keep guessing until you get one!",
highlight: "clue"
},
{
@@ -151,7 +151,7 @@ class BracketCityTutorial {
generateHeaderHTML() {
return `
<div class="puzzle-header">
- <h1>[Bracket City]</h1>
+ <h1>[Bracket Shitty]</h1>
<button class="exit-button">X</button>
<div class="nav-container">
<div class="puzzle-date">How To Play</div>
@@ -519,8 +519,8 @@ class BracketCityTutorial {
*/
showHelp() {
const helpContent = `
- <div style="text-align: center; font-weight: bold; margin: 0 0 0.5em 0;">Welcome to the Bracket City Tutorial</div>
- <div style="margin: 0.9em 0;">* In Bracket City, you solve <mark style="background-color: #fff9c4;">[active clues]</mark> by typing the answers</div>
+ <div style="text-align: center; font-weight: bold; margin: 0 0 0.5em 0;">Welcome to the Bracket Shitty Tutorial</div>
+ <div style="margin: 0.9em 0;">* In Bracket Shitty, you solve <mark style="background-color: #fff9c4;">[active clues]</mark> by typing the answers</div>
<div style="margin: 0.9em 0;">* You can tap any <mark style="background-color: #fff9c4;">[active clue]</mark> to peek at its first letter, or tap again to reveal the full answer</div>
<div style="margin: 0.9em 0;">* This tutorial will guide you through the basics</div>
<div style="margin: 0.9em 0;">* Tap anywhere to continue</div>
@@ -630,7 +630,7 @@ class BracketCityTutorial {
<div class="tutorial-completion">
<div class="tutorial-completion-title">🎉 Tutorial Complete! 🎉</div>
<div class="tutorial-completion-text">Ready to play the full game?</div>
- <button id="playGameButton">Play Bracket City</button>
+ <button id="playGameButton">Play Bracket Shitty</button>
</div>
`;
@@ -651,7 +651,7 @@ class BracketCityTutorial {
const playButton = this.root.querySelector('#playGameButton');
if (playButton) {
playButton.addEventListener('click', () => {
- window.location.href = '/';
+ window.location.href = '/bs';
});
}
}