Skip to content

Commit b0cf91d

Browse files
committed
maxWorld=6
1 parent 826f8ba commit b0cf91d

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

routes/stage-select/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { replaceState } from "$app/navigation";
77
// starts from 1
88
let world = $state<number | null>(null);
99
let stage = $state<number | null>(null);
10-
const maxWorld = 4;
10+
const maxWorld = 6;
1111
const maxStage = 4;
1212
1313
onMount(() => {

src/stages.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import { world2 } from "./stages/world2.ts";
55
import { world3 } from "./stages/world3.ts";
66
import { world4 } from "./stages/world4.ts";
77
import { world5 } from "./stages/world5.ts";
8+
import { world6 } from "./stages/world6.ts";
89

910
export const stages = new Map<string, StageDefinition>([
1011
["1-1", world1.stage1],
@@ -25,6 +26,10 @@ export const stages = new Map<string, StageDefinition>([
2526
["4-4", world4.stage4],
2627
["5-1", world5.stage1],
2728
["5-2", world5.stage2],
28-
// ["5-3", world5.stage3],
29-
// ["5-4", world5.stage4],
29+
["5-3", world5.stage3],
30+
["5-4", world5.stage4],
31+
["6-1", world6.stage1],
32+
["6-2", world6.stage2],
33+
// ["6-3", world6.stage3],
34+
// ["6-4", world6.stage4],
3035
]);

0 commit comments

Comments
 (0)