From 3e0c9087cd6b26a64831f99bf9be05daa1dec510 Mon Sep 17 00:00:00 2001
From: Graham Linden <graham@lindenlab.com>
Date: Fri, 8 Feb 2019 14:29:55 -0800
Subject: [PATCH] SL-10414

---
 indra/llinventory/llsettingssky.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/indra/llinventory/llsettingssky.cpp b/indra/llinventory/llsettingssky.cpp
index 72a3c7b01cc..af7425cca0e 100644
--- a/indra/llinventory/llsettingssky.cpp
+++ b/indra/llinventory/llsettingssky.cpp
@@ -954,7 +954,7 @@ void LLSettingsSky::updateSettings()
 
 F32 LLSettingsSky::getSunMoonGlowFactor() const
 {
-    LLVector3 sunDir = getSunDirection();
+    LLVector3 sunDir  = getSunDirection();
     LLVector3 moonDir = getMoonDirection();
 
     // sun glow at full iff moon is not up
@@ -968,7 +968,7 @@ F32 LLSettingsSky::getSunMoonGlowFactor() const
 
     if (moonDir.mV[2] > 0.0f)
     {
-        return moonDir.mV[VZ] / 3.0f; // ramp moon glow at moonset
+        return 0.25f;
     }
 
     return 0.0f;
-- 
GitLab