We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75e934f commit b5b604eCopy full SHA for b5b604e
source/funkin/backend/assets/AssetsLibraryList.hx
@@ -63,7 +63,8 @@ class AssetsLibraryList extends AssetLibrary {
63
if (l is IModsAssetLibrary) {
64
var lib = cast(l, IModsAssetLibrary);
65
for(e in lib.getFiles(folder))
66
- content.push(e);
+ if(!content.contains(e))
67
+ content.push(e);
68
}
69
#end
70
@@ -87,7 +88,8 @@ class AssetsLibraryList extends AssetLibrary {
87
88
89
90
for(e in lib.getFolders(folder))
91
92
93
94
95
0 commit comments