Improve the timer reminder message

This commit is contained in:
SileNce5k 2024-03-03 19:07:45 +01:00
parent 6ca291136f
commit bdc08b3153
No known key found for this signature in database
GPG key ID: C507260E7F2583AD

View file

@ -1,3 +1,3 @@
module.exports = function (client, timer) { module.exports = function (client, timer) {
client.channels.cache.get(timer.channel).send(`<@${timer.user}>, ${timer.customMessage}`); client.channels.cache.get(timer.channel).send(`<@${timer.user}>, your timer (ID: ${timer.ID}) is up!\nCustom message:\n"${timer.customMessage}"`);
} }