SteamWar/BungeeCore
Archiviert
13
2

Fix inversion + debugoutput

Signed-off-by: Lixfel <agga-games@gmx.de>
Dieser Commit ist enthalten in:
Lixfel 2021-09-17 07:58:10 +02:00
Ursprung 265fa45371
Commit a8d62d6115
2 geänderte Dateien mit 2 neuen und 1 gelöschten Zeilen

Datei anzeigen

@ -195,6 +195,7 @@ public abstract class Node {
c = 1;
}
cores = c;
BungeeCore.get().getLogger().log(Level.INFO, "Adding node " + remote + " with " + cores + " cores.");
synchronized (nodes) {
nodes.add(this);

Datei anzeigen

@ -40,7 +40,7 @@ public class StatCommand extends BasicCommand {
try {
Process process = new ProcessBuilder("ps", "x").start();
new BufferedReader(new InputStreamReader(process.getInputStream())).lines().forEach(s -> {
if (s.contains("--port"))
if (!s.contains("--port"))
return;
serverCount.compute(
s.contains("ssh -L") ? s.substring(s.indexOf("ssh -L") + 6).split(" ")[2] : "local",