Use query port instead of rcon to check alive status

This commit is contained in:
zontreck 2024-06-15 11:57:13 -07:00
parent 62a302c54b
commit e20ade2e95
3 changed files with 12 additions and 2 deletions

View file

@ -364,4 +364,11 @@ class Settings {
Directory.current = Directory(game_path);
}
static void Clear() {
Instance.inst = SettingsEntry();
Instance.subsys = StateMachine();
Instance.serverLoginCreds = Credentials(username: "admin", password: "");
Instance.server = false;
}
}