0
0
mirror of https://github.com/sp-tarkov/server.git synced 2025-02-13 09:50:43 -05:00

Fix snow event not spawning

This commit is contained in:
Dev 2024-01-02 13:41:52 +00:00
parent 4ea97558f1
commit 6080c992b9

View File

@ -42,7 +42,7 @@ export class WeatherGenerator
data.date = formattedDate;
data.time = this.getBsgFormattedInRaidTime(computedDate);
data.acceleration = this.weatherConfig.acceleration;
data.winterEventEnabled = false;
data.winterEventEnabled = this.weatherConfig.enableWinterEvent;
return data;
}