made shadows less blue

This commit is contained in:
Perttu Ahola 2011-07-24 00:49:45 +03:00
parent 68a9157b94
commit 73cf4b3016
1 changed files with 1 additions and 1 deletions

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