From 598e23ab48f29e13b490ac15acc6f7bbe3671028 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Wed, 26 Mar 2025 17:17:20 -0400 Subject: Fixed length issue for suggest guilds --- bot/src/commands/timer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bot/src/commands/timer.js') diff --git a/bot/src/commands/timer.js b/bot/src/commands/timer.js index c86fd20..590fa40 100644 --- a/bot/src/commands/timer.js +++ b/bot/src/commands/timer.js @@ -35,7 +35,7 @@ export default { const date = new Date(); date.setSeconds(date.getSeconds() + timer); const timeString = time(date, TimestampStyles.RelativeTime); - await interaction.reply(`Timer set! Will remind you ${timeString}`); + await interaction.reply(`Timer set! Will remind you ${timeString}.`); } setTimeout(async function(){ -- cgit v1.2.3