Skip to content

Commit 21092a8

Browse files
authored
Change auroraOverlay condition to allow lower scores
1 parent de99d0d commit 21092a8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/weather-overlay-three.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,7 @@ function updateWeather() {
592592
const smogActive = effect !== 'stars' && isEffectEnabled('enable_smog_effect') && isSmogAlertActive();
593593
const moonPosition = effect === 'stars' && isEffectEnabled('enable_moon_glow') ? getMoonPosition() : null;
594594
const auroraVisibilityScore = effect === 'stars' ? getAuroraVisibilityScore() : 0;
595-
const auroraOverlay = effect === 'stars' && auroraVisibilityScore >= 0.65;
595+
const auroraOverlay = effect === 'stars' && auroraVisibilityScore > 0;
596596
const rainEffects = ['rain', 'rain_storm', 'rain_drizzle', 'snow_storm'];
597597
const precipitationMm = getPrecipitationAmountMm();
598598
const windowDroplets =

0 commit comments

Comments
 (0)