File tree Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -504,6 +504,7 @@ class APItem {
504504 }*/
505505 if (! FlxG .save .data .manualOverride ) {
506506 FlxG .save .data .manualOverride = true ;
507+ FlxG .save .data .storyWeek = states. PlayState .storyWeek ;
507508 FlxG .save .data .currentModDirectory = Mods .currentModDirectory ;
508509 FlxG .save .data .difficulties = Difficulty .list ; // just in case
509510 FlxG .save .data .SONG = states. PlayState .SONG ;
Original file line number Diff line number Diff line change @@ -61,16 +61,16 @@ class UnoDeck {
6161 while (cards .length < 108 ) {
6262 // Fill remaining cards with number cards to reach 108 cards
6363 // This is just to ensure the deck has 108 cards if colors are small.
64- for (color in colors ) {
65- // Add one 0 card for each color
66- cards .push (new UnoCard (color , NUMBER , 0 ));
67-
68- for (i in 1 ... 10 ) {
69- cards .push (new UnoCard (color , NUMBER , i ));
70- cards .push (new UnoCard (color , NUMBER , i ));
64+ for (color in colors ) {
65+ // Add one 0 card for each color
66+ cards .push (new UnoCard (color , NUMBER , 0 ));
67+
68+ for (i in 1 ... 10 ) {
69+ cards .push (new UnoCard (color , NUMBER , i ));
70+ cards .push (new UnoCard (color , NUMBER , i ));
71+ }
7172 }
7273 }
73- }
7474
7575 // Add custom cards if provided
7676 if (customCards != null ) {
You can’t perform that action at this time.
0 commit comments