Nevermind: found the fix on Discord thanks to zzzZZZzzzZZZ :
You need to edit file www\js\plugins\OrangeWeather.js go to line 301 and replace next two functions with:
MVC.reader($, 'maxWeatherStrength', function(){
let tmp = undefined
switch (this.weather) {
case $.WeatherTypes.RAIN :
tmp = $.Param.rainStrengthByMonth[OrangeTimeSystem.month];
case $.WeatherTypes.SNOW :
tmp = $.Param.snowStrengthByMonth[OrangeTimeSystem.month];
case $.WeatherTypes.STORM :
tmp = $.Param.stormStrengthByMonth[OrangeTimeSystem.month];
default :
return 0;
}
if (tmp === undefined)
return 0;
return tmp.max;
});
MVC.reader($, 'minWeatherStrength', function(){
let tmp = undefined
switch (this.weather) {
case $.WeatherTypes.RAIN :
tmp = $.Param.rainStrengthByMonth[OrangeTimeSystem.month];
case $.WeatherTypes.SNOW :
tmp = $.Param.snowStrengthByMonth[OrangeTimeSystem.month];
case $.WeatherTypes.STORM :
tmp = $.Param.stormStrengthByMonth[OrangeTimeSystem.month];
default :
return 0;
}
if (tmp === undefined)
return 0;
return tmp.min;
});
Hope it can help others with the same error