File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import { replaceState } from "$app/navigation";
77// starts from 1
88let world = $state <number | null >(null );
99let stage = $state <number | null >(null );
10- const maxWorld = 4 ;
10+ const maxWorld = 6 ;
1111const maxStage = 4 ;
1212
1313onMount (() => {
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import { world2 } from "./stages/world2.ts";
55import { world3 } from "./stages/world3.ts" ;
66import { world4 } from "./stages/world4.ts" ;
77import { world5 } from "./stages/world5.ts" ;
8+ import { world6 } from "./stages/world6.ts" ;
89
910export 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] ) ;
You can’t perform that action at this time.
0 commit comments