forgot a separator here

This commit is contained in:
Pierce 2019-05-16 19:02:27 -04:00
parent efac3cfe53
commit 736c554c69
2 changed files with 2 additions and 2 deletions

View file

@ -62,7 +62,7 @@ module.exports = async function (options) {
event.emit('debug', `[MCLC]: Using ${separator} to separate class paths`);
if(forge) {
event.emit('debug', '[MCLC]: Setting Forge class paths');
classPaths.push(`${options.forge.path || options.forge}${separator}${forge.paths.join(separator)}${separator}${classes.join(separator)};${mcPath}`);
classPaths.push(`${options.forge.path || options.forge}${separator}${forge.paths.join(separator)}${separator}${classes.join(separator)}${separator}${mcPath}`);
classPaths.push(forge.forge.mainClass)
} else {
const file = custom || versionFile;

View file

@ -1,6 +1,6 @@
{
"name": "minecraft-launcher-core",
"version": "2.8.0",
"version": "2.8.1",
"description": "Module that downloads Minecraft assets and runs Minecraft. Also Supports Forge",
"main": "index.js",
"dependencies": {