mirror of
https://github.com/artegoser/pimi-launcher-core.git
synced 2024-11-05 13:13:57 +03:00
HOTFIX undefined if checkJava errors
This commit is contained in:
parent
2fb4386a5d
commit
d60dcf0209
4 changed files with 7 additions and 4 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
@ -61,4 +61,7 @@ typings/
|
|||
.env
|
||||
|
||||
# VSCode Files (https://code.visualstudio.com)
|
||||
.vscode/
|
||||
.vscode/
|
||||
|
||||
# IntelliJ Files
|
||||
.idea/
|
|
@ -2,7 +2,7 @@
|
|||
##### This project is complete for now.
|
||||
[![Build Status](https://travis-ci.com/Pierce01/MinecraftLauncher-core.svg?branch=master)](https://travis-ci.com/Pierce01/MinecraftLauncher-core)
|
||||
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
|
||||
![version](https://img.shields.io/badge/stable_version-3.11.1-blue)
|
||||
![version](https://img.shields.io/badge/stable_version-3.11.2-blue)
|
||||
![badge](https://img.shields.io/badge/ncurses-not_supported-purple)
|
||||
|
||||
MCLC is a NodeJS solution for launching modded and vanilla Minecraft without having to download and format everything yourself.
|
||||
|
|
|
@ -24,7 +24,7 @@ class Handler {
|
|||
if(error) {
|
||||
resolve({
|
||||
run: false,
|
||||
message: e
|
||||
message: error
|
||||
})
|
||||
}
|
||||
this.client.emit('debug', `[MCLC]: Using Java version ${stderr.match(/"(.*?)"/).pop()} ${stderr.includes('64-Bit') ? '64-bit': '32-Bit'}`);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "minecraft-launcher-core",
|
||||
"version": "3.11.1",
|
||||
"version": "3.11.2",
|
||||
"description": "Lightweight module that downloads and runs Minecraft using javascript / NodeJS",
|
||||
"main": "index.js",
|
||||
"dependencies": {
|
||||
|
|
Loading…
Reference in a new issue