Start RFA connection on gamestart, test connection on bauble creation immediately

This commit is contained in:
Zoë Hoekstra
2022-07-31 20:18:11 +02:00
parent 5fc67c328b
commit 2628dc1ae8
2 changed files with 4 additions and 2 deletions
+3 -1
View File
@@ -5,8 +5,10 @@ import { Remote } from "./Remote";
let server: Remote;
export function newRemoteFileApiConnection() : void {
if(server == undefined)
if(server == undefined) {
server = new Remote("localhost", Settings.RemoteFileApiPort);
server.startConnection();
}
else {
server.stopConnection();
server = new Remote("localhost", Settings.RemoteFileApiPort);