From dd592ebe88b5adb4a08b1cf4bb29b0de8f6ba62c Mon Sep 17 00:00:00 2001 From: zontreck Date: Thu, 25 Apr 2024 05:11:05 -0700 Subject: [PATCH] Fix clients not being notified of block restores --- gradle.properties | 2 +- .../zontreck/libzontreck/memory/world/BlockRestoreRunner.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle.properties b/gradle.properties index 7950d8d..83e047c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -53,7 +53,7 @@ mod_name=Zontreck's Library Mod # The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default. mod_license=GPLv3 # The mod version. See https://semver.org/ -mod_version=1201.13.042524.0409 +mod_version=1201.13.042524.0510 # The group ID for the mod. It is only important when publishing as an artifact to a Maven repository. # This should match the base package used for the mod sources. # See https://maven.apache.org/guides/mini/guide-naming-conventions.html diff --git a/src/main/java/dev/zontreck/libzontreck/memory/world/BlockRestoreRunner.java b/src/main/java/dev/zontreck/libzontreck/memory/world/BlockRestoreRunner.java index 3750189..08570dd 100644 --- a/src/main/java/dev/zontreck/libzontreck/memory/world/BlockRestoreRunner.java +++ b/src/main/java/dev/zontreck/libzontreck/memory/world/BlockRestoreRunner.java @@ -43,7 +43,7 @@ public class BlockRestoreRunner implements Runnable level.playSound(null, pos, pop, ss, rng.nextFloat(0.75f,1.0f), rng.nextFloat(1)); - level.setBlock(pos, prim.blockState, Block.UPDATE_NONE, 0); + level.setBlock(pos, prim.blockState, Block.UPDATE_CLIENTS | Block.UPDATE_NONE, 0); BlockEntity entity = level.getBlockEntity(pos); if(entity != null)