Skip to content

Commit df6d643

Browse files
committed
Added uncommited changes from last commit
1 parent 5f36e30 commit df6d643

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

ccloader/js/filemanager.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,12 +153,12 @@ export class Filemanager {
153153
folder = 'assets/mods/';
154154

155155
if(isLocal) {
156-
return this._getResoucesInLocalFolder(folder, ending);
156+
return this._getLocalFolders(folder);
157157
} else {
158158
var results = [];
159159
for(var i in this.modList){
160-
if(this._resourceExists(folder + this.modList[i] + ending)){
161-
results.push(folder + this.modList[i] + ending);
160+
if(this._resourceExists(folder + this.modList[i])){
161+
results.push(folder + this.modList[i]);
162162
}
163163
}
164164
return results;

0 commit comments

Comments
 (0)