From 9f877c9f205490e8174b0e76a96f7fafd09d8eb1 Mon Sep 17 00:00:00 2001 From: Anuken Date: Sat, 31 Aug 2024 08:44:23 -0400 Subject: [PATCH] Fixed setblock not being synced --- core/src/mindustry/logic/LExecutor.java | 2 +- gradle.properties | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/mindustry/logic/LExecutor.java b/core/src/mindustry/logic/LExecutor.java index b8af74f60d..e74d4134af 100644 --- a/core/src/mindustry/logic/LExecutor.java +++ b/core/src/mindustry/logic/LExecutor.java @@ -1349,7 +1349,7 @@ public class LExecutor{ if(t == null) t = Team.derelict; if(tile.block() != b || tile.team() != t){ - tile.setBlock(b, t, Mathf.clamp(rotation.numi(), 0, 3)); + tile.setNet(b, t, Mathf.clamp(rotation.numi(), 0, 3)); } } } diff --git a/gradle.properties b/gradle.properties index b430244756..39d5565595 100644 --- a/gradle.properties +++ b/gradle.properties @@ -26,4 +26,4 @@ org.gradle.caching=true org.gradle.internal.http.socketTimeout=100000 org.gradle.internal.http.connectionTimeout=100000 android.enableR8.fullMode=false -archash=31a570ab27 +archash=3284de5f0f