Stop timer from running on start
All checks were successful
Test / build (push) Successful in 12s

This commit is contained in:
Ethan Lane 2024-12-28 16:42:54 +00:00
parent 6c48da114a
commit 95eab83250

View file

@ -65,7 +65,7 @@ export class CoreClient extends Client {
.then(() => { .then(() => {
console.log("Data Source Initialized"); console.log("Data Source Initialized");
this._timerHelper.AddTimer("0 * * * *", "Europe/London", AutoKick, true); this._timerHelper.AddTimer("0 * * * *", "Europe/London", AutoKick, false);
this._timerHelper.StartAllTimers(); this._timerHelper.StartAllTimers();
}) })