Revert "Quilt progress 2"

This reverts commit 639fc71f7a.
This commit is contained in:
Zoë
2022-07-05 12:54:27 -07:00
parent b31f917acf
commit 60046c4664
7 changed files with 6 additions and 30 deletions
@@ -31,7 +31,7 @@ import com.dfsek.terra.api.handle.WorldHandle;
public class MinecraftWorldHandle implements WorldHandle {
private static BlockState AIR = null;
private static final BlockState AIR = (BlockState) Blocks.AIR.getDefaultState();
@Override
public @NotNull BlockState createBlockState(@NotNull String data) {
@@ -46,7 +46,6 @@ public class MinecraftWorldHandle implements WorldHandle {
@Override
public @NotNull BlockState air() {
if (AIR == null) AIR = (BlockState) Blocks.AIR.getDefaultState();
return AIR;
}