Skip to content

Commit

Permalink
sdjidfjigbj
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesisfeline committed Dec 2, 2024
1 parent 28fb041 commit c7eba32
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion assets/preload/data/levels/xweek4.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"props": [],
"background": "#413CAE",
"visible": false,
"songs": ["topp", "azure", "doublyon"]
"songs": ["topp", "chainazure", "doublyon"]
}
5 changes: 2 additions & 3 deletions assets/preload/data/levels/xweek7.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,9 @@
"background": "#413CAE",
"songs": [
"colorful-clones",
"inversion",
"casanova",
"dde-gnellahc",
"zavodila",
"soft-n-yummy",
"coke",
"all-stars",
"hornstromp",
"twiddlefinger"
Expand Down
10 changes: 9 additions & 1 deletion source/funkin/play/PauseSubState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,15 @@ class PauseSubState extends MusicBeatSubState

var metadataSong:FlxText = new FlxText(20, 15, FlxG.width - 40, 'Song Name');
metadataSong.setFormat(Paths.font('vcr.ttf'), 32, FlxColor.WHITE, FlxTextAlign.RIGHT);
if (PlayState.instance?.currentChart != null) metadataSong.text = '${PlayState.instance.currentChart.songName}';
if (PlayState.instance?.currentChart != null)
{
if (PlayState.instance.currentSong.id == "freyin"
|| PlayState.instance.currentSong.id == "alightly"
|| PlayState.instance.currentSong.id == "uzil")
metadataSong.text = '${PlayState.instance.currentChart.songName} | ignore the mom sprites they are placeholder!!!!';
else
metadataSong.text = '${PlayState.instance.currentChart.songName}';
}
metadataSong.scrollFactor.set(0, 0);
metadata.add(metadataSong);

Expand Down
5 changes: 2 additions & 3 deletions source/funkin/play/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -861,9 +861,8 @@ class PlayState extends MusicBeatSubState
var uhSongId:String = (currentSong?.id ?? '').toLowerCase();
switch (uhSongId)
{
case "freyin" | "furrowed" | "uzil" | "lactose" | "crystal" | "intolerant" | "shadows" | "cubical" | "be-square" | "twisted-knife" | "colorful-clones" |
"samsung" | "topp" | "azure" | "doublyon" | "star-catcher" | "flipperz" | "autumn" | "milk" | "all-stars" | "macromedia" | "cereal-box" |
"soft-n-yummy" | "flash" | "twiddlefinger" | "hornstromp":
case "freyin" | "alightly" | "uzil" | "lactose" | "crystal" | "intolerant" | "shadows" | "cubical" | "be-square" | "twisted-knife" | "colorful-clones" |
"topp" | "chainazure" | "doublyon" | "star-catcher" | "flipperz" | "milk" | "all-stars" | "soft-n-yummy" | "twiddlefinger" | "hornstromp":
isFreyaSong = true;
}

Expand Down

0 comments on commit c7eba32

Please sign in to comment.