Update the give currency timer to give 10 coins every 20 minutes #236

Merged
Vylpes merged 3 commits from feature/226-timer-fix into develop 2024-06-01 14:42:51 +01:00
Showing only changes of commit 37ce41a384 - Show all commits

View file

@ -79,7 +79,7 @@ export class CoreClient extends Client {
.then(() => {
AppLogger.LogInfo("Client", "App Data Source Initialised");
const timerId = this._timerHelper.AddTimer("*/30 * * * * *", "Europe/London", GiveCurrency, false);
const timerId = this._timerHelper.AddTimer("*/30 * * * *", "Europe/London", GiveCurrency, false);
this._timerHelper.StartTimer(timerId);
})
.catch(err => {