This commit is contained in:
I-Have-An-Issue 2023-01-23 17:29:42 -05:00
parent a36c469d5b
commit c980ba93cf
No known key found for this signature in database
GPG Key ID: E55435DEA0825091
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ class GameJob extends Job {
}
async Running() {
const result = await game.Execute("IsRunning", "return true").catch((_) => _)
const result = await this.Execute("IsRunning", "return true").catch((_) => _)
return !result?.message
}
}