aboutsummaryrefslogtreecommitdiff
path: root/bot/src/commands/timer.js
diff options
context:
space:
mode:
authorAndrew Lee <andrew@alee14.me>2025-03-26 17:17:20 -0400
committerAndrew Lee <andrew@alee14.me>2025-03-26 17:17:20 -0400
commit598e23ab48f29e13b490ac15acc6f7bbe3671028 (patch)
tree52b1c64cae46c60b64c4ba0bd74fd3a5d85a87c7 /bot/src/commands/timer.js
parentbc64422fdf34e512509cfc931569715828047c24 (diff)
downloadAleeBot-598e23ab48f29e13b490ac15acc6f7bbe3671028.tar.gz
AleeBot-598e23ab48f29e13b490ac15acc6f7bbe3671028.tar.bz2
AleeBot-598e23ab48f29e13b490ac15acc6f7bbe3671028.zip
Fixed length issue for suggest guilds
Diffstat (limited to 'bot/src/commands/timer.js')
-rw-r--r--bot/src/commands/timer.js2
1 files changed, 1 insertions, 1 deletions
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(){