mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-23 08:07:54 -05:00
Improve error logging when the game can't find a chart file.
This commit is contained in:
parent
99ea7bbe84
commit
0e93f2ab27
1 changed files with 5 additions and 1 deletions
|
@ -431,7 +431,11 @@ class SongRegistry extends BaseRegistry<Song, SongMetadata>
|
||||||
{
|
{
|
||||||
variation = variation == null ? Constants.DEFAULT_VARIATION : variation;
|
variation = variation == null ? Constants.DEFAULT_VARIATION : variation;
|
||||||
var entryFilePath:String = Paths.json('$dataFilePath/$id/$id-metadata${variation == 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<String> = openfl.Assets.getText(entryFilePath);
|
var rawJson:Null<String> = openfl.Assets.getText(entryFilePath);
|
||||||
if (rawJson == null) return null;
|
if (rawJson == null) return null;
|
||||||
rawJson = rawJson.trim();
|
rawJson = rawJson.trim();
|
||||||
|
|
Loading…
Reference in a new issue