diff --git a/Content.Server/Holiday/ShouldCelebrate/WeekdayInMonth.cs b/Content.Server/Holiday/ShouldCelebrate/WeekdayInMonth.cs index 8bd2915f58..660bdb4bc6 100644 --- a/Content.Server/Holiday/ShouldCelebrate/WeekdayInMonth.cs +++ b/Content.Server/Holiday/ShouldCelebrate/WeekdayInMonth.cs @@ -22,6 +22,10 @@ namespace Content.Server.Holiday.ShouldCelebrate public override bool ShouldCelebrate(DateTime date, HolidayPrototype holiday) { + // Not the needed month. + if (date.Month != (int) holiday.BeginMonth) + return false; + // Occurrence NEEDS to be between 1 and 4. _occurrence = Math.Max(1, Math.Min(_occurrence, 4));