From e92a217bd19ee0b28890a7b33e5c6d7c037354cc Mon Sep 17 00:00:00 2001 From: sfan5 Date: Sun, 19 Jun 2022 13:30:11 +0200 Subject: [PATCH] Fix CAO light calculation issue --- src/client/content_cao.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/content_cao.cpp b/src/client/content_cao.cpp index 4d296e6ef..e603b5a21 100644 --- a/src/client/content_cao.cpp +++ b/src/client/content_cao.cpp @@ -872,7 +872,7 @@ void GenericCAO::updateLight(u32 day_night_ratio) MapNode n = m_env->getMap().getNode(pos[i], &this_ok); if (this_ok) { u16 this_light = getInteriorLight(n, 0, m_client->ndef()); - u8 this_light_intensity = MYMAX(this_light & 0xFF, (this_light >> 8) && 0xFF); + u8 this_light_intensity = MYMAX(this_light & 0xFF, this_light >> 8); if (this_light_intensity > light_at_pos_intensity) { light_at_pos = this_light; light_at_pos_intensity = this_light_intensity;