From a36c469d5b5a1e09825548a6b7d43b5edcb32dfc Mon Sep 17 00:00:00 2001 From: I-Have-An-Issue <34550332+I-Have-An-Issue@users.noreply.github.com> Date: Mon, 23 Jan 2023 17:27:39 -0500 Subject: [PATCH] :D --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 9ccdd9b..fd52e3f 100644 --- a/src/index.js +++ b/src/index.js @@ -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)