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

View File

@ -10,7 +10,7 @@ global.games = new Map()
setInterval(() => {
global.games.forEach(async (value, key) => {
if (!(await game.Running())) value.Stop()
if (!(await value.Running())) value.Stop()
})
}, 15000)