From 640586155868f877ad3212244f2146449eb0280b Mon Sep 17 00:00:00 2001 From: Bryson Steck Date: Sun, 21 May 2023 00:00:51 -0600 Subject: i cant type --- .../xyz/brysonsteck/ServerCraft/controllers/PrimaryController.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/xyz/brysonsteck/ServerCraft/controllers/PrimaryController.kt b/src/main/kotlin/xyz/brysonsteck/ServerCraft/controllers/PrimaryController.kt index 75ebbbd..6d802bf 100644 --- a/src/main/kotlin/xyz/brysonsteck/ServerCraft/controllers/PrimaryController.kt +++ b/src/main/kotlin/xyz/brysonsteck/ServerCraft/controllers/PrimaryController.kt @@ -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} } -- cgit v1.2.3