This commit is contained in:
I-Have-An-Issue 2023-02-21 17:37:31 -05:00
parent 55af57ac91
commit 4793dcac66
No known key found for this signature in database
GPG Key ID: E55435DEA0825091
1 changed files with 2 additions and 3 deletions

View File

@ -12,9 +12,8 @@ class GameJob extends Job {
StartGame(id, port) {
return new Promise(async (resolve, reject) => {
this.placeId = id
this.port =
this.port = port
const started = await this.Start()
if (!started) throw new Error("RCCService failed to start")
if (!this.client) await this.CreateClient()