Skip to content

Commit 4be68bf

Browse files
committed
Commit from betpowo
1 parent 56ecc52 commit 4be68bf

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

source/funkin/backend/assets/AssetsLibraryList.hx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,9 @@ class AssetsLibraryList extends AssetLibrary {
123123
return existsSpecific(id, type, BOTH);
124124

125125
public function getSpecificPath(id:String, source:AssetSource = BOTH):Null<String> {
126-
final library = getAssetPathLibrary(id, type, source);
126+
// 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);
127129
if (library != null) {
128130
final path = library.getPath(id);
129131
if (path != null) return path;

0 commit comments

Comments
 (0)