From 8b9e0048852e544f59a5594ecd08a28f9cece322 Mon Sep 17 00:00:00 2001 From: Dev Date: Wed, 3 Apr 2024 21:23:46 +0100 Subject: [PATCH] Fixed winter season boundary by splitting it into 2 separate sections --- project/assets/configs/weather.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/project/assets/configs/weather.json b/project/assets/configs/weather.json index caae741b..59724f0a 100644 --- a/project/assets/configs/weather.json +++ b/project/assets/configs/weather.json @@ -119,9 +119,17 @@ }, { "seasonType": 2, - "name": "WINTER", + "name": "WINTER_END", "startDay": "2", "startMonth": "11", + "endDay": "31", + "endMonth": "12" + }, + { + "seasonType": 2, + "name": "WINTER_START", + "startDay": "1", + "startMonth": "1", "endDay": "1", "endMonth": "3" },