i cant type

This commit is contained in:
Bryson Steck 2023-05-21 00:00:51 -06:00
parent d38d79e9b7
commit 6405861558

View file

@ -499,7 +499,7 @@ class PrimaryController {
val ebr = BufferedReader(errors)
try {
var line = br.readLine()
var errorLine = ebr.readline()
var errorLine = ebr.readLine()
var currentline = 0.0
while (line != null || errorLine != null) {
if (!building) {
@ -512,7 +512,7 @@ class PrimaryController {
log(line)
}
line = br.readLine()
errorLine = ebr.readline()
errorLine = ebr.readLine()
currentline++
if (currentline > 15) {
withContext(Dispatchers.JavaFx) {progressBar.progress = if (spigotBuilt) {currentline/1100.0} else {currentline/14122.0} }