From a632f2b92414d810ab075cbe5a1e92407c8b61db Mon Sep 17 00:00:00 2001 From: Naomi Carrigan Date: Tue, 1 Jul 2025 13:47:07 -0700 Subject: [PATCH] feat: make fallback ping use guild instead of hardcoded value So we can reuse this bot for other utilities --- src/modules/standup.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/standup.ts b/src/modules/standup.ts index 01f8e3b..f54fdb3 100644 --- a/src/modules/standup.ts +++ b/src/modules/standup.ts @@ -70,14 +70,14 @@ export const standup = async( roles: [ channels.find((c) => { return c.channelId === channel.id; - })?.roleId ?? "692816967895220344", + })?.roleId ?? channel.guildId, ], }, content: `Good morning <@&${ channels.find((c) => { return c.channelId === channel.id; - })?.roleId ?? "692816967895220344" + })?.roleId ?? channel.guildId }> It is time for your daily progress update. Please share the following in this thread: 1️⃣ What did you accomplish yesterday?