1
0
mirror of https://github.com/moparisthebest/minetest synced 2024-08-13 16:53:49 -04:00

made shadows less blue

This commit is contained in:
Perttu Ahola 2011-07-24 00:49:45 +03:00
parent 68a9157b94
commit 73cf4b3016

View File

@ -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