summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorquou <quou@disroot.org>2023-07-23 23:17:11 +1000
committerquou <quou@disroot.org>2023-07-23 23:17:11 +1000
commitcb9e23ed0db23f6558ce5d0e7f856523f5cd2132 (patch)
tree6bedc82601dcfd0a94e76dd7288e7951c26eb189 /src
parent6a2c08a8209c49d6c896b8cedd1ac1452c4b6fe3 (diff)
Fix the level counter not going up when a level finishes.HEADmaster
Diffstat (limited to 'src')
-rw-r--r--src/main.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.js b/src/main.js
index 6d2ab4e..74ffa28 100644
--- a/src/main.js
+++ b/src/main.js
@@ -724,7 +724,7 @@ function on_update() {
next_level_timer += ts;
if (win && next_level_timer >= 3) {
- init_game(true);
+ init_game(false);
}
}