feat(multiplayer): broadcast lan server.

This commit is contained in:
huanghongxun
2021-09-19 01:31:00 +08:00
parent e90ec531e5
commit c54a3f2053
8 changed files with 102 additions and 12 deletions

View File

@@ -101,9 +101,9 @@ public class ManagedProcess {
public boolean isRunning() {
try {
process.exitValue();
return true;
} catch (IllegalThreadStateException e) {
return false;
} catch (IllegalThreadStateException e) {
return true;
}
}