diff options
| author | Fuwn <[email protected]> | 2025-10-14 23:20:36 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-10-14 23:20:36 -0700 |
| commit | c82f2c9b5851740b0c4f8a51fff40e21dfb10632 (patch) | |
| tree | 6a98b01e9d5db6ea9d741d3b993fdd5e8697d6b4 /packages/gateway/src | |
| parent | feat(gateway:messageCreate): Disable personaRandomMessage (diff) | |
| download | umabotdiscord-c82f2c9b5851740b0c4f8a51fff40e21dfb10632.tar.xz umabotdiscord-c82f2c9b5851740b0c4f8a51fff40e21dfb10632.zip | |
feat(gateway:dailyConversationStarter): Decrease message cooldown
Diffstat (limited to 'packages/gateway/src')
| -rw-r--r-- | packages/gateway/src/listeners/messageCreate/dailyConversationStarter.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/gateway/src/listeners/messageCreate/dailyConversationStarter.ts b/packages/gateway/src/listeners/messageCreate/dailyConversationStarter.ts index 43ef429..2b295ad 100644 --- a/packages/gateway/src/listeners/messageCreate/dailyConversationStarter.ts +++ b/packages/gateway/src/listeners/messageCreate/dailyConversationStarter.ts @@ -6,7 +6,7 @@ import { generatePersonaMessage } from "./utilities"; const ENABLED_PRIMER_MESSAGE = false; const TARGET_CHANNEL_ID = "1406422619087044675"; -const MIN_HOURS_BETWEEN_MESSAGES = 8; +const MIN_HOURS_BETWEEN_MESSAGES = 6; interface DailyMessageTracker { lastMessageTime: number; |