1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-29 08:20:59 -04:00

Add spaces for console.log

This commit is contained in:
toast-ts 2023-02-17 08:43:29 +11:00
parent d23e6be428
commit 6150d97dd6

View File

@ -141,9 +141,9 @@ setInterval(async()=>{
const lrsStart = client.config.LRSstart;
client.punishments._content.filter((x:Punishment)=>x.endTime<= now && !x.expired).forEach(async (punishment:Punishment)=>{
console.log(`[${client.moment().format('DD/MM/YY HH:mm:ss')}]` + `${punishment.member}\'s ${punishment.type} should expire now`);
console.log(`[${client.moment().format('DD/MM/YY HH:mm:ss')}] ` + `${punishment.member}\'s ${punishment.type} should expire now`);
const unpunishResult = await client.punishments.removePunishment(punishment.id, client.user.id, 'Time\'s up!');
console.log(`[${client.moment().format('DD/MM/YY HH:mm:ss')}]` + unpunishResult);
console.log(`[${client.moment().format('DD/MM/YY HH:mm:ss')}] ` + unpunishResult);
});
const formattedDate = Math.floor((now - lrsStart)/1000/60/60/24);