From ffcdf5e91fa5e3d759aa48f9e3b9186a170858f8 Mon Sep 17 00:00:00 2001 From: OneAvargeCoder193 <85588535+OneAvargeCoder193@users.noreply.github.com> Date: Mon, 7 Jul 2025 10:57:05 -0400 Subject: [PATCH] Enable placing logs on transparent blocks (#1660) fixes #1579 --- mods/cubyz/rotation/log.zig | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/mods/cubyz/rotation/log.zig b/mods/cubyz/rotation/log.zig index 9006e68f..fc298e35 100644 --- a/mods/cubyz/rotation/log.zig +++ b/mods/cubyz/rotation/log.zig @@ -221,10 +221,7 @@ pub fn generateData( } } - const result: u16 = currentData.enabledConnections; - if(result == currentBlock.data) return false; - - currentBlock.data = result; + currentBlock.data = currentData.enabledConnections; return true; } return false;