feat: Introduce dynamic Aurora Observatory terminal with admin command, scheduled updates, and lootdrop event integration.

This commit is contained in:
syntaxbullet
2025-12-24 17:19:22 +01:00
parent 419059904c
commit 345e05f821
5 changed files with 221 additions and 1 deletions

View File

@@ -18,6 +18,12 @@ export const schedulerService = {
setInterval(() => {
schedulerService.runJanitor();
}, 60 * 1000);
// Terminal Update Loop (every 60s)
const { terminalService } = require("@/modules/terminal/terminal.service");
setInterval(() => {
terminalService.update();
}, 60 * 1000);
},
runJanitor: async () => {