Skip to content

Commit b31bea4

Browse files
committed
the lil things
1 parent d1ad9bb commit b31bea4

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

.flight/icons/yuta.png

10.2 KB
Loading

.flight/metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
"members": [
1212
{
1313
"name": "Z11Gaming",
14-
"icon": "icons/z11.webp",
14+
"icon": "icons/z11.png",
1515
"role": "Main Creater of the engine"
1616
},
1717
{
1818
"name": "Yutamon",
19-
"icon": "icons/yuta.webp",
19+
"icon": "icons/yuta.png",
2020
"role": "Co-Creater of the engine"
2121
}
2222
]
10.2 KB
Loading

source/archipelago/APSettingsSubState.hx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -419,9 +419,12 @@ class APSettingsSubState extends MusicBeatSubstate {
419419

420420
comment += "# This YAML file was generated by Mixtape Engine.\n";
421421
comment += "# The amount of songs in this YAML is " + Reflect.field(yamlThing, "songList").length + ".\n";
422-
comment += "# The amount of checks possible is " + APEntryState.gameSettings.FNF.songList.length * 5 + ".\n";
423-
comment += "# The amount of checks if just Song Completion is used is " + APEntryState.gameSettings.FNF.songList.length * 2 + ".\n";
424-
comment += "# The amount of checks if just Note Checks is used is " + APEntryState.gameSettings.FNF.songList.length * 3 + ".\n";
422+
comment += "# The amount of checks (total) possible is " + APEntryState.gameSettings.FNF.songList.length * 5 + ".\n";
423+
comment += "# The amount of checks (total) if just Song Completion is used is " + APEntryState.gameSettings.FNF.songList.length * 2 + ".\n";
424+
comment += "# The amount of checks (total) if just Note Checks is used is " + APEntryState.gameSettings.FNF.songList.length * 3 + ".\n";
425+
comment += "# The amount of checks (currently) possible is " + ((APEntryState.gameSettings.FNF.songList.length * 5) - APEntryState.gameSettings.FNF.song_limit) + ".\n";
426+
comment += "# The amount of checks (currently) if just Song Completion is used is " + ((APEntryState.gameSettings.FNF.songList.length * 2) - APEntryState.gameSettings.FNF.song_limit) + ".\n";
427+
comment += "# The amount of checks (currently) if just Note Checks is used is " + ((APEntryState.gameSettings.FNF.songList.length * 3) - APEntryState.gameSettings.FNF.song_limit) + ".\n";
425428
comment += "\n";
426429

427430
var yamlString = "Friday Night Funkin:\n";

source/backend/MusicBeatState.hx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -346,15 +346,15 @@ class MusicBeatState extends FlxState
346346
@:privateAccess
347347
(cast state:PlayState).preGenerateNotes();
348348
}
349-
},
349+
}/*,
350350
"FreeplayState" => function(state:FlxState) {
351351
352352
FreeplayManager.reloadFreeplay();
353353
354354
},
355355
"OsuFreeplayState" => function(state:FlxState) {
356356
FreeplayManager.reloadFreeplay();
357-
}
357+
}*/
358358
];
359359

360360
public function hashCode():Int

0 commit comments

Comments
 (0)