feat: joel may sometimes answer even when he's not called for.

This commit is contained in:
eric
2026-02-23 13:47:25 +01:00
parent 66b1ef15af
commit 283802ae55
10 changed files with 375 additions and 41 deletions

View File

@@ -7,6 +7,7 @@ import type { EventHandler } from "../types";
import { loadCommands, registerCommands } from "../../commands";
import { guildRepository } from "../../database";
import { createLogger } from "../../core/logger";
import { startSpontaneousMentionsCron } from "../../features/joel";
const logger = createLogger("Events:Ready");
@@ -38,6 +39,9 @@ export const readyHandler: EventHandler<"ready"> = {
type: ActivityType.Custom,
});
// Start random-time spontaneous mentions
startSpontaneousMentionsCron(client);
logger.info("Bot is ready!");
},
};