From: Perttu Ahola Date: Sat, 23 Jul 2011 21:49:45 +0000 (+0300) Subject: made shadows less blue X-Git-Tag: 0.2.20110731_3~46 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=73cf4b30165290dd4de229897d6720522ffa54fc;p=oweals%2Fminetest.git made shadows less blue --- 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