ts alone only

This commit is contained in:
legop3
2026-01-08 19:25:01 -05:00
parent b884f23b13
commit 981262a0ae
+1 -1
View File
@@ -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' || lower.startsWith('ts ')) {
if (lower === 'ts') {
await handleTimeStatusCommand(message);
return;
}