summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mapblock_mesh.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapblock_mesh.cpp b/src/mapblock_mesh.cpp
index 465170c2d..c625983b0 100644
--- a/src/mapblock_mesh.cpp
+++ b/src/mapblock_mesh.cpp
@@ -151,7 +151,7 @@ video::SColor MapBlock_LightColor(u8 alpha, u8 light)
#if 1
// Emphase blue a bit in darker places
float lim = 80;
- float power = 0.7;
+ float power = 0.8;
if(light > lim)
return video::SColor(alpha,light,light,light);
else