diff options
Diffstat (limited to 'src/environment.cpp')
-rw-r--r-- | src/environment.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/environment.cpp b/src/environment.cpp index 680d209fc..e293eb511 100644 --- a/src/environment.cpp +++ b/src/environment.cpp @@ -1653,7 +1653,7 @@ void ClientEnvironment::step(float dtime) u8 light = LIGHT_MAX; try{ // Get node at head - v3s16 p = floatToInt(playerpos + v3f(0,BS+BS/2,0), BS); + v3s16 p = player->getLightPosition(); MapNode n = m_map->getNode(p); light = n.getLightBlend(getDayNightRatio()); } |