From 0e93f2ab278a8f4ff863ea267a037b026af97333 Mon Sep 17 00:00:00 2001 From: EliteMasterEric Date: Tue, 26 Mar 2024 21:30:08 -0400 Subject: [PATCH 1/3] Improve error logging when the game can't find a chart file. --- source/funkin/data/song/SongRegistry.hx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/source/funkin/data/song/SongRegistry.hx b/source/funkin/data/song/SongRegistry.hx index d82e184a5..4fdf5d0df 100644 --- a/source/funkin/data/song/SongRegistry.hx +++ b/source/funkin/data/song/SongRegistry.hx @@ -431,7 +431,11 @@ class SongRegistry extends BaseRegistry { variation = variation == null ? Constants.DEFAULT_VARIATION : variation; var entryFilePath:String = Paths.json('$dataFilePath/$id/$id-metadata${variation == Constants.DEFAULT_VARIATION ? '' : '-$variation'}'); - if (!openfl.Assets.exists(entryFilePath)) return null; + if (!openfl.Assets.exists(entryFilePath)) + { + trace(' [WARN] Could not locate file $entryFilePath'); + return null; + } var rawJson:Null = openfl.Assets.getText(entryFilePath); if (rawJson == null) return null; rawJson = rawJson.trim(); From d373e1bfed44bb38daef38c43615bafdde14ba6c Mon Sep 17 00:00:00 2001 From: EliteMasterEric Date: Tue, 26 Mar 2024 21:30:25 -0400 Subject: [PATCH 2/3] Implement a bunch of updated charts. --- assets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets b/assets index 5f1726f1b..08e095b6e 160000 --- a/assets +++ b/assets @@ -1 +1 @@ -Subproject commit 5f1726f1b0c11fc747b7473708cf4e5f28be05f1 +Subproject commit 08e095b6e876b9241a0634a4021e9fbb14fe1304 From 75b8336dce4ca4b04f01fd9e8a715af3cdbbe62c Mon Sep 17 00:00:00 2001 From: Cameron Taylor Date: Wed, 27 Mar 2024 01:09:24 -0400 Subject: [PATCH 3/3] assets submod --- assets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets b/assets index 08e095b6e..8013845e3 160000 --- a/assets +++ b/assets @@ -1 +1 @@ -Subproject commit 08e095b6e876b9241a0634a4021e9fbb14fe1304 +Subproject commit 8013845e331015b40c4cc35230f6d02bd2148d52