diff --git a/indra/llinventory/llsettingssky.cpp b/indra/llinventory/llsettingssky.cpp
index 8d0b37d01fb52559e2773f44476f86d817fe4400..306c73292057c05f4da4fe5b2e481d6a8413cdb2 100644
--- a/indra/llinventory/llsettingssky.cpp
+++ b/indra/llinventory/llsettingssky.cpp
@@ -1277,11 +1277,7 @@ LLColor4 LLSettingsSky::getTotalAmbient() const
 
 LLColor3 LLSettingsSky::getMoonlightColor() const
 {
-    F32 moon_brightness = getIsMoonUp() ? getMoonBrightness() : 0.001f;
-    LLColor3 moonlight_a(0.9, 0.9, 1.32);
-    LLColor3 moonlight_b(0.66, 0.66, 2.0);
-    LLColor3 moonlight = lerp(moonlight_b, moonlight_a, moon_brightness);    
-    return moonlight;
+    return getSunlightColor(); //moon and sun share light color
 }
 
 void LLSettingsSky::clampColor(LLColor3& color, F32 gamma, F32 scale) const