From 79440605ec2a16bf9a0a8df58bc15d9d9d2b42bd Mon Sep 17 00:00:00 2001 From: Paramat Date: Fri, 18 Oct 2019 21:54:44 +0100 Subject: [PATCH] Make natural night light as bright as MT 0.4.16 (#9053) --- src/daynightratio.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/daynightratio.h b/src/daynightratio.h index 5986da5fc..538767cad 100644 --- a/src/daynightratio.h +++ b/src/daynightratio.h @@ -30,8 +30,8 @@ inline u32 time_to_daynight_ratio(float time_of_day, bool smooth) t = 24000.0f - t; const float values[9][2] = { - {4250.0f + 125.0f, 150.0f}, - {4500.0f + 125.0f, 150.0f}, + {4250.0f + 125.0f, 175.0f}, + {4500.0f + 125.0f, 175.0f}, {4750.0f + 125.0f, 250.0f}, {5000.0f + 125.0f, 350.0f}, {5250.0f + 125.0f, 500.0f},