diff --git a/commands/events/calendar.js b/commands/events/calendar.js index a459dc95..276e991b 100644 --- a/commands/events/calendar.js +++ b/commands/events/calendar.js @@ -44,7 +44,7 @@ module.exports = class CalendarCommand extends Command { let currentDay = startDay; for (let i = 0; i < daysInMonth; i++) { display += `| ${(i + 1).toString().padStart(2, '0')} `; - if (currentDay === 6) { + if (currentDay === 6 && i + 1 !== daysInMonth) { display += '|\n------------------------------------\n'; currentDay = 0; } else {