From 008cf96c7e255b7697254449dfebaeeca73af280 Mon Sep 17 00:00:00 2001 From: legop3 Date: Thu, 8 Jan 2026 19:54:47 -0500 Subject: [PATCH] dont fix it --- server/src/services/discordBotService.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/services/discordBotService.js b/server/src/services/discordBotService.js index 0c340e2d..424dcf8c 100644 --- a/server/src/services/discordBotService.js +++ b/server/src/services/discordBotService.js @@ -396,7 +396,7 @@ async function handleCommand(message) { if (message.author.bot) return; const content = (message.content || '').trim(); const lower = content.toLowerCase(); - if (lower === 'ts') { + if (lower === 'ts' || lower.startsWith('ts')) { await handleTimeStatusCommand(message); return; }