From a7c3ce5d8ca8985817c6c2a9afe161bfb017191f Mon Sep 17 00:00:00 2001 From: Anuken Date: Sun, 13 Oct 2024 12:11:23 -0400 Subject: [PATCH] Fixed #10253 --- core/src/mindustry/game/Schematics.java | 2 +- gradle.properties | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/mindustry/game/Schematics.java b/core/src/mindustry/game/Schematics.java index 32b304f3e9..d9abfa796b 100644 --- a/core/src/mindustry/game/Schematics.java +++ b/core/src/mindustry/game/Schematics.java @@ -654,7 +654,7 @@ public class Schematics implements Loadable{ private static Schematic rotated(Schematic input, boolean counter){ int direction = Mathf.sign(counter); - Schematic schem = input == tmpSchem ? tmpSchem2 : tmpSchem2; + Schematic schem = input == tmpSchem ? tmpSchem2 : tmpSchem; schem.width = input.width; schem.height = input.height; Pools.freeAll(schem.tiles); diff --git a/gradle.properties b/gradle.properties index 7deb4aaf24..e0f0692c65 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=dd60085a9d +archash=c1e3b23ddd