This commit is contained in:
Anuken
2024-10-13 12:11:23 -04:00
parent a195548b41
commit a7c3ce5d8c
2 changed files with 2 additions and 2 deletions

View File

@@ -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);