diff --git a/src/module/weatherEffects/effects/SnowWeatherEffect.js b/src/module/weatherEffects/effects/SnowWeatherEffect.js index 8d77c55e..cb5bd890 100644 --- a/src/module/weatherEffects/effects/SnowWeatherEffect.js +++ b/src/module/weatherEffects/effects/SnowWeatherEffect.js @@ -67,7 +67,7 @@ export class SnowWeatherEffect extends AbstractWeatherEffect { h: d.height, }, maxParticles: p, - frequency: 1 / p, + frequency: (this.constructor.CONFIG.lifetime.min + this.constructor.CONFIG.lifetime.max) / 2 / p, }, { inplace: false }, ); diff --git a/src/module/weatherEffects/effects/SnowstormWeatherEffect.js b/src/module/weatherEffects/effects/SnowstormWeatherEffect.js index 385e21a9..48fa1035 100644 --- a/src/module/weatherEffects/effects/SnowstormWeatherEffect.js +++ b/src/module/weatherEffects/effects/SnowstormWeatherEffect.js @@ -33,7 +33,7 @@ export class SnowstormWeatherEffect extends AbstractWeatherEffect { h: d.sceneRect.height, }, maxParticles: p, - frequency: 1 / p, + frequency: (this.constructor.CONFIG.lifetime.min + this.constructor.CONFIG.lifetime.max) / 2 / p, }, { inplace: false }, );