Spaces:
Running
Running
milwright
commited on
Commit
Β·
07a676b
1
Parent(s):
138ffaa
Fix confusing level advancement message display
Browse files- src/app.js +1 -1
src/app.js
CHANGED
@@ -166,7 +166,7 @@ class App {
|
|
166 |
if (roundsCompleted >= 2) {
|
167 |
message += ` - Excellent! Advancing to Level ${this.game.currentLevel + 1}! π`;
|
168 |
} else {
|
169 |
-
message += ` - Great job! ${roundsCompleted}/2 rounds completed for Level ${this.game.currentLevel
|
170 |
}
|
171 |
this.elements.result.className = 'mt-4 text-center font-semibold text-green-600';
|
172 |
} else {
|
|
|
166 |
if (roundsCompleted >= 2) {
|
167 |
message += ` - Excellent! Advancing to Level ${this.game.currentLevel + 1}! π`;
|
168 |
} else {
|
169 |
+
message += ` - Great job! ${roundsCompleted}/2 rounds completed for Level ${this.game.currentLevel}`;
|
170 |
}
|
171 |
this.elements.result.className = 'mt-4 text-center font-semibold text-green-600';
|
172 |
} else {
|