v1.0.0-beta.2
Fixed bug which prevented mods with declared extensions in their identifiers from being loaded. Synced distribution.json with remote. Updated electron-builder. Updated readme to include information on beta testing.
This commit is contained in:
@@ -184,11 +184,11 @@ class ProcessBuilder {
|
||||
const ids = []
|
||||
if(type === 'forge'){
|
||||
for(let mod of mods){
|
||||
ids.push(mod.getIdentifier())
|
||||
ids.push(mod.getExtensionlessID())
|
||||
}
|
||||
} else {
|
||||
for(let mod of mods){
|
||||
ids.push(mod.getIdentifier() + '@' + mod.getExtension())
|
||||
ids.push(mod.getExtensionlessID() + '@' + mod.getExtension())
|
||||
}
|
||||
}
|
||||
modList.modRef = ids
|
||||
|
||||
Reference in New Issue
Block a user