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

View File

@ -11,7 +11,7 @@ global.games = new Map()
setInterval(() => {
logger.info("Killing jobless RCCService instances...")
global.games.forEach(async (value, key) => {
if (!(await game.Running())) game.Stop()
if (!(await game.Running())) value.Stop()
})
}, 15000)