There was an error while loading. Please reload this page.
1 parent 56ecc52 commit 4be68bfCopy full SHA for 4be68bf
1 file changed
source/funkin/backend/assets/AssetsLibraryList.hx
@@ -123,7 +123,9 @@ class AssetsLibraryList extends AssetLibrary {
123
return existsSpecific(id, type, BOTH);
124
125
public function getSpecificPath(id:String, source:AssetSource = BOTH):Null<String> {
126
- final library = getAssetPathLibrary(id, type, source);
+ // idk if this should be null ? cus theres no mentions of type here
127
+ // but also adding one makes actions not work
128
+ final library = getAssetPathLibrary(id, null, source);
129
if (library != null) {
130
final path = library.getPath(id);
131
if (path != null) return path;
0 commit comments