SteamWar/BungeeCore
Archiviert
13
2

Add StatCommand

Fix LoadEvaluation
Dieser Commit ist enthalten in:
yoyosource 2021-06-20 21:38:12 +02:00
Ursprung f6a4c343a5
Commit 4120e989ce

Datei anzeigen

@ -68,10 +68,8 @@ public class LoadEvaluation {
process.waitFor(); process.waitFor();
return Double.parseDouble(new BufferedReader(new InputStreamReader(process.getInputStream())).readLine()) / 100.0; return Double.parseDouble(new BufferedReader(new InputStreamReader(process.getInputStream())).readLine()) / 100.0;
} catch (IOException e) { } catch (IOException e) {
e.printStackTrace();
return 1D; return 1D;
} catch (InterruptedException e) { } catch (InterruptedException e) {
e.printStackTrace();
Thread.currentThread().interrupt(); Thread.currentThread().interrupt();
return 1D; return 1D;
} }