diff --git a/project/src/generators/WeatherGenerator.ts b/project/src/generators/WeatherGenerator.ts index aacebe4f..b29b906d 100644 --- a/project/src/generators/WeatherGenerator.ts +++ b/project/src/generators/WeatherGenerator.ts @@ -46,9 +46,10 @@ export class WeatherGenerator { data.time = this.getBsgFormattedInRaidTime(); data.acceleration = this.weatherConfig.acceleration; - data.season = this.weatherConfig.overrideSeason - ? this.weatherConfig.overrideSeason - : this.seasonalEventService.getActiveWeatherSeason(); + data.season = + this.weatherConfig.overrideSeason !== null + ? this.weatherConfig.overrideSeason + : this.seasonalEventService.getActiveWeatherSeason(); return data; }