diff --git a/project/assets/configs/seasonalevents.json b/project/assets/configs/seasonalevents.json index de8da61e..5c76ee6c 100644 --- a/project/assets/configs/seasonalevents.json +++ b/project/assets/configs/seasonalevents.json @@ -671,8 +671,15 @@ "type": "NEW_YEARS", "startDay": "1", "startMonth": "1", - "endDay": "27", + "endDay": "7", "endMonth": "1" + }, { + "name": "snow", + "type": "SNOW", + "startDay": "8", + "startMonth": "1", + "endDay": "5", + "endMonth": "2" } ] } diff --git a/project/src/models/enums/SeasonalEventType.ts b/project/src/models/enums/SeasonalEventType.ts index ebc93a94..191ec0de 100644 --- a/project/src/models/enums/SeasonalEventType.ts +++ b/project/src/models/enums/SeasonalEventType.ts @@ -5,4 +5,5 @@ export enum SeasonalEventType HALLOWEEN = "Halloween", NEW_YEARS = "NewYears", PROMO = "Promo", + SNOW = "Snow" } diff --git a/project/src/services/SeasonalEventService.ts b/project/src/services/SeasonalEventService.ts index f1aceb72..fa0f9205 100644 --- a/project/src/services/SeasonalEventService.ts +++ b/project/src/services/SeasonalEventService.ts @@ -344,6 +344,9 @@ export class SeasonalEventService this.giveGift(sessionId, "NewYear2023"); this.enableSnow(); break; + case SeasonalEventType.SNOW.toLowerCase(): + this.enableSnow(); + break; default: // Likely a mod event this.addEventGearToBots(eventType);