diff --git a/com/mojang/blaze3d/GraphicsWorkarounds.java b/com/mojang/blaze3d/GraphicsWorkarounds.java deleted file mode 100644 index d5ff4a43..00000000 --- a/com/mojang/blaze3d/GraphicsWorkarounds.java +++ /dev/null @@ -1,77 +0,0 @@ -package com.mojang.blaze3d; - -import com.mojang.blaze3d.platform.GLX; -import com.mojang.blaze3d.systems.GpuDevice; -import java.lang.ref.WeakReference; -import java.util.List; -import java.util.Locale; -import net.fabricmc.api.EnvType; -import net.fabricmc.api.Environment; -import org.jetbrains.annotations.Nullable; - -@Environment(EnvType.CLIENT) -public class GraphicsWorkarounds { - private static final List INTEL_GEN11_CORE = List.of( - "i3-1000g1", - "i3-1000g4", - "i3-1000ng4", - "i3-1005g1", - "i3-l13g4", - "i5-1030g4", - "i5-1030g7", - "i5-1030ng7", - "i5-1034g1", - "i5-1035g1", - "i5-1035g4", - "i5-1035g7", - "i5-1038ng7", - "i5-l16g7", - "i7-1060g7", - "i7-1060ng7", - "i7-1065g7", - "i7-1068g7", - "i7-1068ng7" - ); - private static final List INTEL_GEN11_ATOM = List.of("x6211e", "x6212re", "x6214re", "x6413e", "x6414re", "x6416re", "x6425e", "x6425re", "x6427fe"); - private static final List INTEL_GEN11_CELERON = List.of("j6412", "j6413", "n4500", "n4505", "n5095", "n5095a", "n5100", "n5105", "n6210", "n6211"); - private static final List INTEL_GEN11_PENTIUM = List.of("6805", "j6426", "n6415", "n6000", "n6005"); - @Nullable - private static GraphicsWorkarounds instance; - private final WeakReference gpuDevice; - private final boolean alwaysCreateFreshImmediateBuffer; - - private GraphicsWorkarounds(GpuDevice device) { - this.gpuDevice = new WeakReference(device); - this.alwaysCreateFreshImmediateBuffer = isIntelGen11(device); - } - - public static GraphicsWorkarounds get(GpuDevice device) { - GraphicsWorkarounds graphicsWorkarounds = instance; - if (graphicsWorkarounds == null || graphicsWorkarounds.gpuDevice.get() != device) { - instance = graphicsWorkarounds = new GraphicsWorkarounds(device); - } - - return graphicsWorkarounds; - } - - public boolean alwaysCreateFreshImmediateBuffer() { - return this.alwaysCreateFreshImmediateBuffer; - } - - private static boolean isIntelGen11(GpuDevice device) { - String string = GLX._getCpuInfo().toLowerCase(Locale.ROOT); - String string2 = device.getRenderer().toLowerCase(Locale.ROOT); - if (!string.contains("intel") || !string2.contains("intel") || string2.contains("mesa")) { - return false; - } else if (string2.endsWith("gen11")) { - return true; - } else { - return !string2.contains("uhd graphics") && !string2.contains("iris") - ? false - : string.contains("atom") && INTEL_GEN11_ATOM.stream().anyMatch(string::contains) - || string.contains("celeron") && INTEL_GEN11_CELERON.stream().anyMatch(string::contains) - || string.contains("pentium") && INTEL_GEN11_PENTIUM.stream().anyMatch(string::contains) - || INTEL_GEN11_CORE.stream().anyMatch(string::contains); - } - } -} diff --git a/com/mojang/blaze3d/opengl/GlProgram.java b/com/mojang/blaze3d/opengl/GlProgram.java index cc9ae0b1..db9c6009 100644 --- a/com/mojang/blaze3d/opengl/GlProgram.java +++ b/com/mojang/blaze3d/opengl/GlProgram.java @@ -1,10 +1,7 @@ package com.mojang.blaze3d.opengl; import com.google.common.collect.Sets; -import com.mojang.blaze3d.opengl.Uniform.Sampler; -import com.mojang.blaze3d.opengl.Uniform.Ubo; -import com.mojang.blaze3d.opengl.Uniform.Utb; -import com.mojang.blaze3d.pipeline.RenderPipeline.UniformDescription; +import com.mojang.blaze3d.pipeline.RenderPipeline; import com.mojang.blaze3d.systems.RenderSystem; import com.mojang.blaze3d.textures.TextureFormat; import com.mojang.blaze3d.vertex.VertexFormat; @@ -16,7 +13,7 @@ import java.util.Objects; import java.util.Set; import net.fabricmc.api.EnvType; import net.fabricmc.api.Environment; -import net.minecraft.client.renderer.ShaderManager.CompilationException; +import net.minecraft.client.renderer.ShaderManager; import org.jetbrains.annotations.Nullable; import org.jetbrains.annotations.VisibleForTesting; import org.lwjgl.opengl.GL31; @@ -36,10 +33,10 @@ public class GlProgram implements AutoCloseable { this.debugLabel = debugLabel; } - public static GlProgram link(GlShaderModule vertexShader, GlShaderModule fragmentShader, VertexFormat vertexFormat, String debugLabel) throws CompilationException { + public static GlProgram link(GlShaderModule vertexShader, GlShaderModule fragmentShader, VertexFormat vertexFormat, String debugLabel) throws ShaderManager.CompilationException { int i = GlStateManager.glCreateProgram(); if (i <= 0) { - throw new CompilationException("Could not create shader program (returned program ID " + i + ")"); + throw new ShaderManager.CompilationException("Could not create shader program (returned program ID " + i + ")"); } else { int j = 0; @@ -52,26 +49,22 @@ public class GlProgram implements AutoCloseable { GlStateManager.glAttachShader(i, fragmentShader.getShaderId()); GlStateManager.glLinkProgram(i); int k = GlStateManager.glGetProgrami(i, 35714); - String string = GlStateManager.glGetProgramInfoLog(i, 32768); - if (k != 0 && !string.contains("Failed for unknown reason")) { - if (!string.isEmpty()) { - LOGGER.info("Info log when linking program containing VS {} and FS {}. Log output: {}", vertexShader.getId(), fragmentShader.getId(), string); - } - - return new GlProgram(i, debugLabel); - } else { - throw new CompilationException( + if (k == 0) { + String string = GlStateManager.glGetProgramInfoLog(i, 32768); + throw new ShaderManager.CompilationException( "Error encountered when linking program containing VS " + vertexShader.getId() + " and FS " + fragmentShader.getId() + ". Log output: " + string ); + } else { + return new GlProgram(i, debugLabel); } } } - public void setupUniforms(List uniforms, List samplers) { + public void setupUniforms(List uniforms, List samplers) { int i = 0; int j = 0; - for (UniformDescription uniformDescription : uniforms) { + for (RenderPipeline.UniformDescription uniformDescription : uniforms) { String string = uniformDescription.name(); Object var10000_1 = switch (uniformDescription.type()) { @@ -82,7 +75,7 @@ public class GlProgram implements AutoCloseable { } else { int l = i++; GL31.glUniformBlockBinding(this.programId, k, l); - yield new Ubo(l); + yield new Uniform.Ubo(l); } } case TEXEL_BUFFER -> { @@ -92,7 +85,7 @@ public class GlProgram implements AutoCloseable { yield null; } else { int l = j++; - yield new Utb(k, l, (TextureFormat)Objects.requireNonNull(uniformDescription.textureFormat())); + yield new Uniform.Utb(k, l, (TextureFormat)Objects.requireNonNull(uniformDescription.textureFormat())); } } }; @@ -109,7 +102,7 @@ public class GlProgram implements AutoCloseable { LOGGER.warn("{} shader program does not use sampler {} defined in the pipeline. This might be a bug.", this.debugLabel, string2); } else { int n = j++; - this.uniformsByName.put(string2, new Sampler(m, n)); + this.uniformsByName.put(string2, new Uniform.Sampler(m, n)); } } @@ -121,7 +114,7 @@ public class GlProgram implements AutoCloseable { if (!samplers.contains(string) && BUILT_IN_UNIFORMS.contains(string)) { int n = i++; GL31.glUniformBlockBinding(this.programId, p, n); - this.uniformsByName.put(string, new Ubo(n)); + this.uniformsByName.put(string, new Uniform.Ubo(n)); } else { LOGGER.warn("Found unknown and unsupported uniform {} in {}", string, this.debugLabel); } diff --git a/com/mojang/blaze3d/opengl/VertexArrayCache.java b/com/mojang/blaze3d/opengl/VertexArrayCache.java index c46a6959..1e679b6e 100644 --- a/com/mojang/blaze3d/opengl/VertexArrayCache.java +++ b/com/mojang/blaze3d/opengl/VertexArrayCache.java @@ -2,7 +2,6 @@ package com.mojang.blaze3d.opengl; import com.mojang.blaze3d.vertex.VertexFormat; import com.mojang.blaze3d.vertex.VertexFormatElement; -import com.mojang.blaze3d.vertex.VertexFormatElement.Type; import java.util.HashMap; import java.util.List; import java.util.Map; @@ -70,7 +69,7 @@ public abstract class VertexArrayCache { case POSITION: case GENERIC: case UV: - if (vertexFormatElement.type() == Type.FLOAT) { + if (vertexFormatElement.type() == VertexFormatElement.Type.FLOAT) { GlStateManager._vertexAttribPointer( j, vertexFormatElement.count(), GlConst.toGl(vertexFormatElement.type()), false, i, vertexFormat.getOffset(vertexFormatElement) ); @@ -112,6 +111,7 @@ public abstract class VertexArrayCache { if (vertexArray == null) { int i = GlStateManager._glGenVertexArrays(); GlStateManager._glBindVertexArray(i); + ARBVertexAttribBinding.glBindVertexBuffer(0, buffer.handle, 0L, format.getVertexSize()); List list = format.getElements(); for (int j = 0; j < list.size(); j++) { @@ -121,7 +121,7 @@ public abstract class VertexArrayCache { case POSITION: case GENERIC: case UV: - if (vertexFormatElement.type() == Type.FLOAT) { + if (vertexFormatElement.type() == VertexFormatElement.Type.FLOAT) { ARBVertexAttribBinding.glVertexAttribFormat( j, vertexFormatElement.count(), GlConst.toGl(vertexFormatElement.type()), false, format.getOffset(vertexFormatElement) ); @@ -141,7 +141,6 @@ public abstract class VertexArrayCache { ARBVertexAttribBinding.glVertexAttribBinding(j, 0); } - ARBVertexAttribBinding.glBindVertexBuffer(0, buffer.handle, 0L, format.getVertexSize()); VertexArrayCache.VertexArray vertexArray2 = new VertexArrayCache.VertexArray(i, format, buffer); this.debugLabels.applyLabel(vertexArray2); this.cache.put(format, vertexArray2); diff --git a/com/mojang/blaze3d/platform/NativeImage.java b/com/mojang/blaze3d/platform/NativeImage.java index e2c56042..00229d9f 100644 --- a/com/mojang/blaze3d/platform/NativeImage.java +++ b/com/mojang/blaze3d/platform/NativeImage.java @@ -428,13 +428,13 @@ public final class NativeImage implements AutoCloseable { this.copyRect(this, xFrom, yFrom, xFrom + xToDelta, yFrom + yToDelta, width, height, mirrorX, mirrorY); } - public void copyRect(NativeImage target, int xFrom, int yFrom, int xTo, int yTo, int width, int height, boolean mirrorX, boolean mirrorY) { + public void copyRect(NativeImage source, int xFrom, int yFrom, int xTo, int yTo, int width, int height, boolean mirrorX, boolean mirrorY) { for (int i = 0; i < height; i++) { for (int j = 0; j < width; j++) { int k = mirrorX ? width - 1 - j : j; int l = mirrorY ? height - 1 - i : i; int m = this.getPixelABGR(xFrom + j, yFrom + i); - target.setPixelABGR(xTo + k, yTo + l, m); + source.setPixelABGR(xTo + k, yTo + l, m); } } } diff --git a/com/mojang/blaze3d/vertex/VertexFormat.java b/com/mojang/blaze3d/vertex/VertexFormat.java index 5f97312b..4b2a3ea5 100644 --- a/com/mojang/blaze3d/vertex/VertexFormat.java +++ b/com/mojang/blaze3d/vertex/VertexFormat.java @@ -3,7 +3,6 @@ package com.mojang.blaze3d.vertex; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; import com.mojang.blaze3d.DontObfuscate; -import com.mojang.blaze3d.GraphicsWorkarounds; import com.mojang.blaze3d.buffers.GpuBuffer; import com.mojang.blaze3d.systems.CommandEncoder; import com.mojang.blaze3d.systems.GpuDevice; @@ -17,14 +16,13 @@ import java.util.function.Supplier; import net.fabricmc.api.EnvType; import net.fabricmc.api.Environment; import net.minecraft.Util; -import net.minecraft.Util.OS; import org.jetbrains.annotations.Nullable; @Environment(EnvType.CLIENT) @DontObfuscate public class VertexFormat { public static final int UNKNOWN_ELEMENT = -1; - private static final boolean USE_STAGING_BUFFER_WORKAROUND = Util.getPlatform() == OS.WINDOWS && Util.isAarch64(); + private static final boolean USE_STAGING_BUFFER_WORKAROUND = Util.getPlatform() == Util.OS.WINDOWS && Util.isAarch64(); @Nullable private static GpuBuffer UPLOAD_STAGING_BUFFER; private final List elements; @@ -127,8 +125,8 @@ public class VertexFormat { } private GpuBuffer uploadToBufferWithWorkaround(@Nullable GpuBuffer gpuBuffer, ByteBuffer byteBuffer, int i, Supplier supplier) { - GpuDevice gpuDevice = RenderSystem.getDevice(); if (USE_STAGING_BUFFER_WORKAROUND) { + GpuDevice gpuDevice = RenderSystem.getDevice(); if (gpuBuffer == null) { gpuBuffer = gpuDevice.createBuffer(supplier, i, byteBuffer); } else { @@ -143,12 +141,6 @@ public class VertexFormat { } return gpuBuffer; - } else if (GraphicsWorkarounds.get(gpuDevice).alwaysCreateFreshImmediateBuffer()) { - if (gpuBuffer != null) { - gpuBuffer.close(); - } - - return gpuDevice.createBuffer(supplier, i, byteBuffer); } else { return uploadToBuffer(gpuBuffer, byteBuffer, i, supplier); } diff --git a/data/minecraft/structure/ancient_city/city/entrance/entrance_connector.nbt b/data/minecraft/structure/ancient_city/city/entrance/entrance_connector.nbt index c1fcc2af..0f8a7436 100644 --- a/data/minecraft/structure/ancient_city/city/entrance/entrance_connector.nbt +++ b/data/minecraft/structure/ancient_city/city/entrance/entrance_connector.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2fd76e82c7a1e9f3b54051d33e8d2f373331649cf4332d30ac05ddef9d486f8a -size 9416 +oid sha256:40a7790cde75c562cbff7db60760c758667ccf5efff5dc38c41c912857027c79 +size 9415 diff --git a/data/minecraft/structure/ancient_city/city/entrance/entrance_path_1.nbt b/data/minecraft/structure/ancient_city/city/entrance/entrance_path_1.nbt index 2eef08eb..880b456e 100644 --- a/data/minecraft/structure/ancient_city/city/entrance/entrance_path_1.nbt +++ b/data/minecraft/structure/ancient_city/city/entrance/entrance_path_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6c0d464559401f6045dfc307b4f77c3793eae93413ee00859f101a3ebca9fcb9 -size 9751 +oid sha256:7d0a6d7f8264588df4887b6f1d900e2e1586cce2223b0d1941cba0b84f99fbe1 +size 9747 diff --git a/data/minecraft/structure/ancient_city/city/entrance/entrance_path_2.nbt b/data/minecraft/structure/ancient_city/city/entrance/entrance_path_2.nbt index fa13a323..8ef75d6a 100644 --- a/data/minecraft/structure/ancient_city/city/entrance/entrance_path_2.nbt +++ b/data/minecraft/structure/ancient_city/city/entrance/entrance_path_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b86cfce70ee2a4510fc6958319fc59bc539907f45ce916d7fef0523599c5cf12 -size 13777 +oid sha256:b4a0e91e5fa09cdeadf53b5a79eee710c86d6ac690755e23501ddffb2adc59cb +size 13775 diff --git a/data/minecraft/structure/ancient_city/city/entrance/entrance_path_3.nbt b/data/minecraft/structure/ancient_city/city/entrance/entrance_path_3.nbt index ba583a1c..fb899b4c 100644 --- a/data/minecraft/structure/ancient_city/city/entrance/entrance_path_3.nbt +++ b/data/minecraft/structure/ancient_city/city/entrance/entrance_path_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f30f9d0a26ba0ca08016c9b6ad12d76c4d4e27b532c2ad33f20973073b3c6f85 -size 12153 +oid sha256:25eb3c6d5815badb5620079bc48f5e43017db7366a2857371ee943dfe4ac4b6b +size 12151 diff --git a/data/minecraft/structure/ancient_city/city/entrance/entrance_path_4.nbt b/data/minecraft/structure/ancient_city/city/entrance/entrance_path_4.nbt index 7e690e24..9127144b 100644 --- a/data/minecraft/structure/ancient_city/city/entrance/entrance_path_4.nbt +++ b/data/minecraft/structure/ancient_city/city/entrance/entrance_path_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3e39c56ab6b2c98cc1f6bf6d753d0c8d2c8b0d4fed0e7c5aac6c58f448422b26 -size 11786 +oid sha256:9568202de549dae98a2d78e7c315f13094da5eca678e8dd349f330c1971cb306 +size 11785 diff --git a/data/minecraft/structure/ancient_city/city/entrance/entrance_path_5.nbt b/data/minecraft/structure/ancient_city/city/entrance/entrance_path_5.nbt index 71a4e690..ee35b16b 100644 --- a/data/minecraft/structure/ancient_city/city/entrance/entrance_path_5.nbt +++ b/data/minecraft/structure/ancient_city/city/entrance/entrance_path_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2e18250c75ea6d5112a98888c817649df98a438e8b829495a66077368f6debef -size 9067 +oid sha256:eb850172ec6617bf08074015e445ad2f6b6ccfe79ef444e083986e5bb974fb00 +size 9066 diff --git a/data/minecraft/structure/ancient_city/city_center/city_center_1.nbt b/data/minecraft/structure/ancient_city/city_center/city_center_1.nbt index 97baff28..af938e0e 100644 --- a/data/minecraft/structure/ancient_city/city_center/city_center_1.nbt +++ b/data/minecraft/structure/ancient_city/city_center/city_center_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4f8d708c68c2dbe91b5739061da1c3804d1086ab62bf5056d48491b1f95432a0 +oid sha256:2bb0a6d320a55d79a09c9c84aafdf907ec8652ff1511b2d52c284704cfbd6a6b size 26259 diff --git a/data/minecraft/structure/ancient_city/city_center/city_center_2.nbt b/data/minecraft/structure/ancient_city/city_center/city_center_2.nbt index f0d41422..75f5123f 100644 --- a/data/minecraft/structure/ancient_city/city_center/city_center_2.nbt +++ b/data/minecraft/structure/ancient_city/city_center/city_center_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8cb7082de8cd79848cdf3cde0e9d53b8875095146a4940b54e265ab6dd733344 +oid sha256:e749f557e57f64b446fe2a7e4937a77a6d446f3500dbb4c8df4a2f5ae43496f7 size 26676 diff --git a/data/minecraft/structure/ancient_city/city_center/city_center_3.nbt b/data/minecraft/structure/ancient_city/city_center/city_center_3.nbt index b2711446..d366da3a 100644 --- a/data/minecraft/structure/ancient_city/city_center/city_center_3.nbt +++ b/data/minecraft/structure/ancient_city/city_center/city_center_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b6bd41cf8cb03273dfb5c88cb6e602d65eac8e99f5a136791641181df8641410 -size 26122 +oid sha256:20285b8923444c5b87b6419a28b1aa6f3ffeab5d415d93dc69e9772365229a9d +size 26121 diff --git a/data/minecraft/structure/ancient_city/city_center/walls/bottom_1.nbt b/data/minecraft/structure/ancient_city/city_center/walls/bottom_1.nbt index 10d2dd3d..bb5f9481 100644 --- a/data/minecraft/structure/ancient_city/city_center/walls/bottom_1.nbt +++ b/data/minecraft/structure/ancient_city/city_center/walls/bottom_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:352387d4063a422884b5a26192d03f8dde88e3637242d4a0254f411970412095 -size 7472 +oid sha256:1510e514edfab95658d97cbe3bf9118f22a456b8e5d325e9c8098dd58082b4bb +size 7471 diff --git a/data/minecraft/structure/ancient_city/city_center/walls/bottom_2.nbt b/data/minecraft/structure/ancient_city/city_center/walls/bottom_2.nbt index 85963a8b..0f24a1f5 100644 --- a/data/minecraft/structure/ancient_city/city_center/walls/bottom_2.nbt +++ b/data/minecraft/structure/ancient_city/city_center/walls/bottom_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7290fccf672ad8b989cb8594faf799119f66cda4cbe7085c0fad15a31fb8c12b -size 7001 +oid sha256:8729d6df7b1e75b4726a8ff52694953dec10547deb6dcadaf0a2620d5396fa6a +size 7000 diff --git a/data/minecraft/structure/ancient_city/city_center/walls/bottom_left_corner.nbt b/data/minecraft/structure/ancient_city/city_center/walls/bottom_left_corner.nbt index 10e505b1..b217878a 100644 --- a/data/minecraft/structure/ancient_city/city_center/walls/bottom_left_corner.nbt +++ b/data/minecraft/structure/ancient_city/city_center/walls/bottom_left_corner.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ec1e72af71dc2f3276a5b00d7a0067786058bdefc842968b6d42eb0263f6ffa0 -size 2610 +oid sha256:8881673eac020f151378cbf5e53064a14dca325243bfb1e3112eb4e3d4aebf45 +size 2608 diff --git a/data/minecraft/structure/ancient_city/city_center/walls/bottom_right_corner.nbt b/data/minecraft/structure/ancient_city/city_center/walls/bottom_right_corner.nbt index 4e2a84f6..d802852c 100644 --- a/data/minecraft/structure/ancient_city/city_center/walls/bottom_right_corner.nbt +++ b/data/minecraft/structure/ancient_city/city_center/walls/bottom_right_corner.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:017b4283dd185fabc842eccb8a05c31e18a98b935f918c60927d9a64db2f5625 -size 3047 +oid sha256:29af792b000d10e6125ea5912c0e66aa722125e7c2a270c148bd02ec71314913 +size 3046 diff --git a/data/minecraft/structure/ancient_city/city_center/walls/bottom_right_corner_1.nbt b/data/minecraft/structure/ancient_city/city_center/walls/bottom_right_corner_1.nbt index fcfe93bb..23cb209f 100644 --- a/data/minecraft/structure/ancient_city/city_center/walls/bottom_right_corner_1.nbt +++ b/data/minecraft/structure/ancient_city/city_center/walls/bottom_right_corner_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bf9a7f90cac5354242c0ee61029cd14e2a241d5c5daec647b3339da8ea1725b9 +oid sha256:89baf9db99120097a3ff7beb29ee4f0cca3494c4d740fb24dd1cddffe4afd4b2 size 2594 diff --git a/data/minecraft/structure/ancient_city/city_center/walls/bottom_right_corner_2.nbt b/data/minecraft/structure/ancient_city/city_center/walls/bottom_right_corner_2.nbt index c517b4e2..e040f237 100644 --- a/data/minecraft/structure/ancient_city/city_center/walls/bottom_right_corner_2.nbt +++ b/data/minecraft/structure/ancient_city/city_center/walls/bottom_right_corner_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ca76e0e3ef55680bca78fd361f9808df79b6b8de011f147e906cfd67a63972fe -size 2666 +oid sha256:95592288174c6e4408bed47c7e983fedd7b9be413121b20289a5a5d1c1a60736 +size 2665 diff --git a/data/minecraft/structure/ancient_city/city_center/walls/left.nbt b/data/minecraft/structure/ancient_city/city_center/walls/left.nbt index b97fac65..91897e16 100644 --- a/data/minecraft/structure/ancient_city/city_center/walls/left.nbt +++ b/data/minecraft/structure/ancient_city/city_center/walls/left.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cdf47a9c203b7d98a0d5c7286ead7cf7abe9d66dab8bca0cf70002f65d483d70 -size 3182 +oid sha256:ba03bbb9ffc545a1ecbcefb653ac0006b192cd1b19c19c89636cd1f5c9dd5846 +size 3181 diff --git a/data/minecraft/structure/ancient_city/city_center/walls/right.nbt b/data/minecraft/structure/ancient_city/city_center/walls/right.nbt index db030793..491b8e86 100644 --- a/data/minecraft/structure/ancient_city/city_center/walls/right.nbt +++ b/data/minecraft/structure/ancient_city/city_center/walls/right.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a67005b77f3d29738a4020578df89e379787c0861a82dda6fe3d943d8e9cb5dc -size 3177 +oid sha256:59da24ccfd107ee0d2fed8b19c0c103de7b2622fde6af95e55d4a59126d9a590 +size 3176 diff --git a/data/minecraft/structure/ancient_city/city_center/walls/top.nbt b/data/minecraft/structure/ancient_city/city_center/walls/top.nbt index 0e7a275b..f5e8e92b 100644 --- a/data/minecraft/structure/ancient_city/city_center/walls/top.nbt +++ b/data/minecraft/structure/ancient_city/city_center/walls/top.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8ec499be547418c299006c88de7e0e16332b9b1958167dd65a2cd5be03abc5b4 -size 7119 +oid sha256:e49c1a07963128be2bd94b29d68a0894833a489c5e9d15a1c1b2de4a635dd5cc +size 7117 diff --git a/data/minecraft/structure/ancient_city/city_center/walls/top_left_corner.nbt b/data/minecraft/structure/ancient_city/city_center/walls/top_left_corner.nbt index a6a0902e..71c51867 100644 --- a/data/minecraft/structure/ancient_city/city_center/walls/top_left_corner.nbt +++ b/data/minecraft/structure/ancient_city/city_center/walls/top_left_corner.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:aefbb74063eff0d8a55994ddecf260efecb7b657d54d7532a65d9a926a42c1d1 -size 2597 +oid sha256:cdd5ae0fd291ddbe83cf03be6995614f070baa4414f3679a006f329aecbf718b +size 2596 diff --git a/data/minecraft/structure/ancient_city/city_center/walls/top_right_corner.nbt b/data/minecraft/structure/ancient_city/city_center/walls/top_right_corner.nbt index a3fe66b8..0d0826e7 100644 --- a/data/minecraft/structure/ancient_city/city_center/walls/top_right_corner.nbt +++ b/data/minecraft/structure/ancient_city/city_center/walls/top_right_corner.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b494b5de3e39341d492036c4f3c029a409352eb8602afd69d1585395352532f1 -size 2643 +oid sha256:33823cc22bbd0cd62b519cfde2e7c9e56151906b5469dc6c0d3fbb1497ae83dc +size 2642 diff --git a/data/minecraft/structure/ancient_city/structures/barracks.nbt b/data/minecraft/structure/ancient_city/structures/barracks.nbt index 77cb2e92..0b0e4e23 100644 --- a/data/minecraft/structure/ancient_city/structures/barracks.nbt +++ b/data/minecraft/structure/ancient_city/structures/barracks.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e4622062b817a59782fc596d36f2104c9b8b6655fc8afeb86d46172c77b34e85 -size 5633 +oid sha256:dbb86db93f703d1d36a0db6aa5dbbe8b7c59c7dd02776cad50cb368d7795e0ec +size 5632 diff --git a/data/minecraft/structure/ancient_city/structures/camp_1.nbt b/data/minecraft/structure/ancient_city/structures/camp_1.nbt index f59c2ef1..72ca11fa 100644 --- a/data/minecraft/structure/ancient_city/structures/camp_1.nbt +++ b/data/minecraft/structure/ancient_city/structures/camp_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:050fb3ad58bc43cae8777c382cfbb0553d239beb9ae0a77038e99244e7b62f2c -size 1165 +oid sha256:06c0fd29a930edfee180f012fe7a2002373706496c20f5deb432e6bcca9becba +size 1164 diff --git a/data/minecraft/structure/ancient_city/structures/camp_2.nbt b/data/minecraft/structure/ancient_city/structures/camp_2.nbt index e9d0eb3f..8885196c 100644 --- a/data/minecraft/structure/ancient_city/structures/camp_2.nbt +++ b/data/minecraft/structure/ancient_city/structures/camp_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:be4885c0965003b3a4857a07b11658f37bd51732b27ead3261008e758e8adbb2 -size 1273 +oid sha256:abc4f9f1a9574e9b70bd79bd532f5d76764552143902ef4d429772394aa9a2eb +size 1272 diff --git a/data/minecraft/structure/ancient_city/structures/camp_3.nbt b/data/minecraft/structure/ancient_city/structures/camp_3.nbt index b987b768..d749ae57 100644 --- a/data/minecraft/structure/ancient_city/structures/camp_3.nbt +++ b/data/minecraft/structure/ancient_city/structures/camp_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:77db536194020cb0d49692db6bdc76663c67343129ad91fb839ebdcc726c833b -size 1015 +oid sha256:b766ca46669316f4b920abe0f44d7c34d906ed930c0b9215fadd448d7ebc0398 +size 1016 diff --git a/data/minecraft/structure/ancient_city/structures/chamber_1.nbt b/data/minecraft/structure/ancient_city/structures/chamber_1.nbt index 3b592930..b49c1514 100644 --- a/data/minecraft/structure/ancient_city/structures/chamber_1.nbt +++ b/data/minecraft/structure/ancient_city/structures/chamber_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:87138c71d4a99ad8530947188e77cffafdf664c31cede585bcc75afd9cec5def -size 2535 +oid sha256:01b09c9c50031e86088242713a577419f111e243c9de86b195b3cee7eee8318f +size 2534 diff --git a/data/minecraft/structure/ancient_city/structures/chamber_2.nbt b/data/minecraft/structure/ancient_city/structures/chamber_2.nbt index c89340d8..015aae78 100644 --- a/data/minecraft/structure/ancient_city/structures/chamber_2.nbt +++ b/data/minecraft/structure/ancient_city/structures/chamber_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:38814a5e768d161db14ba7c53921443807515e866275b16db5438130709b0272 -size 1312 +oid sha256:9be9875c841e57a0b1c4cce5837dd766d9f33f1efa2b723615d622d2476a982c +size 1310 diff --git a/data/minecraft/structure/ancient_city/structures/chamber_3.nbt b/data/minecraft/structure/ancient_city/structures/chamber_3.nbt index 5cdb24d3..86f8e0c2 100644 --- a/data/minecraft/structure/ancient_city/structures/chamber_3.nbt +++ b/data/minecraft/structure/ancient_city/structures/chamber_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:48e207e7172f4cd5d761b3fe578f357eb25187974696feaaa89b314970d950b1 -size 1100 +oid sha256:4728d82ef664fede07c44a549ff96bf7d67d07b87249529c4a0abb9d934a322b +size 1099 diff --git a/data/minecraft/structure/ancient_city/structures/ice_box_1.nbt b/data/minecraft/structure/ancient_city/structures/ice_box_1.nbt index 45c26b91..96dcc06d 100644 --- a/data/minecraft/structure/ancient_city/structures/ice_box_1.nbt +++ b/data/minecraft/structure/ancient_city/structures/ice_box_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:680f742a837f7bf7108db40897db7f98a3e56f621451cfad68d0216dfdcf21fb -size 3907 +oid sha256:e540529bffb33596d63d5cde5a4d1944d9e4b1b38562582d6be6d069c91d7345 +size 3906 diff --git a/data/minecraft/structure/ancient_city/structures/large_pillar_1.nbt b/data/minecraft/structure/ancient_city/structures/large_pillar_1.nbt index 3544807a..81ca7914 100644 --- a/data/minecraft/structure/ancient_city/structures/large_pillar_1.nbt +++ b/data/minecraft/structure/ancient_city/structures/large_pillar_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:22417c9c7da86c0952a3aa32355a7be78f6cd713c1b64d636513d8b61fd2ca53 -size 1476 +oid sha256:270be24d8ba77fb66e3ed4972a5d26802d015195f255ce723d8c0cb4d7b36e70 +size 1475 diff --git a/data/minecraft/structure/ancient_city/structures/large_ruin_1.nbt b/data/minecraft/structure/ancient_city/structures/large_ruin_1.nbt index 6cd31440..92bb1d92 100644 --- a/data/minecraft/structure/ancient_city/structures/large_ruin_1.nbt +++ b/data/minecraft/structure/ancient_city/structures/large_ruin_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2655d29644aaccf1e51458a085364eda8b30525be697a64ae94b51537cb55e76 -size 397 +oid sha256:f4a0ff028c3cb15101ba8faa42a187533f81b1b42bd08aaecd910aaa85c15746 +size 395 diff --git a/data/minecraft/structure/ancient_city/structures/medium_pillar_1.nbt b/data/minecraft/structure/ancient_city/structures/medium_pillar_1.nbt index e21f829b..3d7a5b80 100644 --- a/data/minecraft/structure/ancient_city/structures/medium_pillar_1.nbt +++ b/data/minecraft/structure/ancient_city/structures/medium_pillar_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2d20dff14f0780defc7293dcf0adf8b3f8787beddddadd7c32c7d5a038b90f8f -size 959 +oid sha256:e2b1ad3a4d0ec1ab4e48566ee99d8abb844a1a211a776cc413ddf4562b909a25 +size 958 diff --git a/data/minecraft/structure/ancient_city/structures/medium_ruin_1.nbt b/data/minecraft/structure/ancient_city/structures/medium_ruin_1.nbt index 6da80a14..19ff3444 100644 --- a/data/minecraft/structure/ancient_city/structures/medium_ruin_1.nbt +++ b/data/minecraft/structure/ancient_city/structures/medium_ruin_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:73d4a02bcce3cbca1ccff5285d01f7deee46b361ebce10f3966cd53658c2fcec -size 326 +oid sha256:e1cbac6d65163c904d97b26c76ef092ae6ef1e8e70a5827cebd078c145741dab +size 324 diff --git a/data/minecraft/structure/ancient_city/structures/medium_ruin_2.nbt b/data/minecraft/structure/ancient_city/structures/medium_ruin_2.nbt index 5b3de062..85673b9b 100644 --- a/data/minecraft/structure/ancient_city/structures/medium_ruin_2.nbt +++ b/data/minecraft/structure/ancient_city/structures/medium_ruin_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b2c86ef798c73d54eda7bc475c0011c0dd870e011d5dd0eb6879b2a9ce712299 -size 353 +oid sha256:d852779d85e59f5fa08543d708e54ef9d1eecb24a03eb9f7c4ed55562b06c518 +size 352 diff --git a/data/minecraft/structure/ancient_city/structures/sauna_1.nbt b/data/minecraft/structure/ancient_city/structures/sauna_1.nbt index bd81f60f..e0c6e1da 100644 --- a/data/minecraft/structure/ancient_city/structures/sauna_1.nbt +++ b/data/minecraft/structure/ancient_city/structures/sauna_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a057f7ac4f947ee5c14de1edd8966f3249dfa5574bcf597767e72aa4fa4a3a1c -size 6957 +oid sha256:5f96d424eb7751de3281894bd243ce6455bae4b11754d09763e27b151fc20cd5 +size 6956 diff --git a/data/minecraft/structure/ancient_city/structures/small_ruin_1.nbt b/data/minecraft/structure/ancient_city/structures/small_ruin_1.nbt index 85ade93c..1f9c0e1b 100644 --- a/data/minecraft/structure/ancient_city/structures/small_ruin_1.nbt +++ b/data/minecraft/structure/ancient_city/structures/small_ruin_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bf81d0d42ef73d862fb4c27a8d8a3974e285371765b277fa95967aa90f06aca2 +oid sha256:c71ce5513a1a1f47e2fa1738e4ce48d68df7ddf7fc9c7b68fcd1b033ff7cf8ac size 313 diff --git a/data/minecraft/structure/ancient_city/structures/small_ruin_2.nbt b/data/minecraft/structure/ancient_city/structures/small_ruin_2.nbt index c48599ec..159873bd 100644 --- a/data/minecraft/structure/ancient_city/structures/small_ruin_2.nbt +++ b/data/minecraft/structure/ancient_city/structures/small_ruin_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:88304e177fdb08f035d6192ac9edd5497e7d439c35fda2b5f8ad872e04d65a4d -size 310 +oid sha256:478d16e9f6f1759a46da4f38ee2ac3d9d8086426118192680b14d860422271a6 +size 309 diff --git a/data/minecraft/structure/ancient_city/structures/small_statue.nbt b/data/minecraft/structure/ancient_city/structures/small_statue.nbt index 5ce79a83..a04dc2fa 100644 --- a/data/minecraft/structure/ancient_city/structures/small_statue.nbt +++ b/data/minecraft/structure/ancient_city/structures/small_statue.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e47464c6b2180b1718dbac5b76c44630bedb7482de94c734e642b09ab934498c +oid sha256:27ccd8253322a6f835ef3e61173cf75af7be868ed679bb5d055a6acb06c224c4 size 891 diff --git a/data/minecraft/structure/ancient_city/structures/tall_ruin_1.nbt b/data/minecraft/structure/ancient_city/structures/tall_ruin_1.nbt index e07147bc..fcf44787 100644 --- a/data/minecraft/structure/ancient_city/structures/tall_ruin_1.nbt +++ b/data/minecraft/structure/ancient_city/structures/tall_ruin_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:457ae619378306e035ac130d2b7253f978337b843a6d66fc86273b322898c8df -size 2792 +oid sha256:c2624f28c041386bd747f5ad8afc8bb8556c2551946e044cdcb9b0df626452e3 +size 2791 diff --git a/data/minecraft/structure/ancient_city/structures/tall_ruin_2.nbt b/data/minecraft/structure/ancient_city/structures/tall_ruin_2.nbt index eba17e03..dd8eb70d 100644 --- a/data/minecraft/structure/ancient_city/structures/tall_ruin_2.nbt +++ b/data/minecraft/structure/ancient_city/structures/tall_ruin_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4438020eae0eceb08aaa9b522ad3935175a56c7ef11656b09092fc413975e87b -size 3486 +oid sha256:078ea03154c4b5c5d3c9a60ddddb5e01b14fea935bdd04dfa297ce8fafb46baf +size 3485 diff --git a/data/minecraft/structure/ancient_city/structures/tall_ruin_3.nbt b/data/minecraft/structure/ancient_city/structures/tall_ruin_3.nbt index 2f2e8f63..cc0bb5c9 100644 --- a/data/minecraft/structure/ancient_city/structures/tall_ruin_3.nbt +++ b/data/minecraft/structure/ancient_city/structures/tall_ruin_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5eeb3abddce2233f8122869c63273b0872d718b4e570570e0672f868ed189721 -size 1521 +oid sha256:725c816ba79d47db04010907581465cb6ea9424c03392ffb8d49b5e1f261b13a +size 1520 diff --git a/data/minecraft/structure/ancient_city/structures/tall_ruin_4.nbt b/data/minecraft/structure/ancient_city/structures/tall_ruin_4.nbt index b7068e39..61e661f1 100644 --- a/data/minecraft/structure/ancient_city/structures/tall_ruin_4.nbt +++ b/data/minecraft/structure/ancient_city/structures/tall_ruin_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e688d32e55b16d8d9880a677793987eb6c966b0680d41b60ded8fd9c1ad14944 -size 2296 +oid sha256:7f31c1b63c8c33ba2d7d95b86e41ceadc3b4cf248911207c24935bd2370ed670 +size 2295 diff --git a/data/minecraft/structure/ancient_city/walls/intact_corner_wall_1.nbt b/data/minecraft/structure/ancient_city/walls/intact_corner_wall_1.nbt index 5423996a..13397651 100644 --- a/data/minecraft/structure/ancient_city/walls/intact_corner_wall_1.nbt +++ b/data/minecraft/structure/ancient_city/walls/intact_corner_wall_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f818b813715be7785ca6a7288ae994bc7bf2b26762b99d2e30047021131d69db +oid sha256:be7df9a1998fbf38c33c988af66b8391a87d2e1d06ae6a479cc382149dfaf4f1 size 3836 diff --git a/data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_1.nbt b/data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_1.nbt index a4e7fad6..7008e38b 100644 --- a/data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_1.nbt +++ b/data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:177e96efe95d80a0498aa5962a26e722c7a9a244860b7586b5fceba276f45636 -size 2026 +oid sha256:1b13ad236cd54d31b66cee6d89b1262f3a169dfbf8df2f7027ca540cb18fcc5d +size 2025 diff --git a/data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_2.nbt b/data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_2.nbt index ce530b0d..a144ad45 100644 --- a/data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_2.nbt +++ b/data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8fdb78b7e3b0fe2ad836cf9e531953c75371f892bdca761452aee1e2c3193e1c -size 2006 +oid sha256:a57dab0a18dd330d02b36323e90e9a948f7fe47e1ff01701505b3c8ee1edf354 +size 2004 diff --git a/data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_bridge.nbt b/data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_bridge.nbt index 0741209d..7b2de9d4 100644 --- a/data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_bridge.nbt +++ b/data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_bridge.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:50d08f613566b58bbfe7a6cfeeb0e210bdf3904271097c22f91c50fa438dc2e6 -size 2720 +oid sha256:62cc5ed4b616f4d7fbd93f866b883807b20ee97e5d63a4a5ef88a82fe2088c17 +size 2719 diff --git a/data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_passage_1.nbt b/data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_passage_1.nbt index 90fc53f5..5918c943 100644 --- a/data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_passage_1.nbt +++ b/data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_passage_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0d255180df4cf068a835cda0ab202523dcaaf4ce27d47f9c656a70c508b475f9 -size 1661 +oid sha256:d8ceccdf0eb6d73fc7a0022c3d1ccd7ada66055c0346642bbef0015356116a22 +size 1660 diff --git a/data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_stairs_1.nbt b/data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_stairs_1.nbt index b9f5d8ef..36e56c6e 100644 --- a/data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_stairs_1.nbt +++ b/data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_stairs_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e1c14b9a0e9c61a1837d719722eda0cf167ff1d5369a6c80ea27706891868b03 -size 2119 +oid sha256:7bc42acc6a476e546e3e660c228ba3ab809e18af3f98637b025cf2da00403856 +size 2116 diff --git a/data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_stairs_2.nbt b/data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_stairs_2.nbt index 15aff236..e9a13397 100644 --- a/data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_stairs_2.nbt +++ b/data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_stairs_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fb5b03cfb052268c0bf8b4e64e769f4d7f801ce6b8b235e3708f5cb039289adb -size 2169 +oid sha256:f88f22d53f92fe9d1a074289c345b48513d565a54d887de83e087b091f712cb0 +size 2168 diff --git a/data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_stairs_3.nbt b/data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_stairs_3.nbt index 342b698d..7ea4d1c4 100644 --- a/data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_stairs_3.nbt +++ b/data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_stairs_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3eca409d2ecb959f60b00eb263e38c614fb8cf94448776baca52d3a769c871a8 +oid sha256:41ac3d16b6cbc81b682b06538a33ae3979f7f65fd6faec79ff18a0889f60ca0d size 2155 diff --git a/data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_stairs_4.nbt b/data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_stairs_4.nbt index 6775fcca..de2ffb8c 100644 --- a/data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_stairs_4.nbt +++ b/data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_stairs_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5ccc7f37096bccf92b7b6ec68d4bcae63e2021dee6f29fca190f9370f8133d21 -size 2057 +oid sha256:ef61b249ce73fbc1b9c84ffb5960f312fb103684862312eb7474433a26cffa71 +size 2056 diff --git a/data/minecraft/structure/ancient_city/walls/intact_intersection_wall_1.nbt b/data/minecraft/structure/ancient_city/walls/intact_intersection_wall_1.nbt index c9a8c95a..bbe02aa2 100644 --- a/data/minecraft/structure/ancient_city/walls/intact_intersection_wall_1.nbt +++ b/data/minecraft/structure/ancient_city/walls/intact_intersection_wall_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e369f1cc09ce97589e786dde251fa90e3d2874c17dcd44995f1a9eb516153066 -size 3125 +oid sha256:337f77eecd80b411464b7fb9a99668913913f9259efe8e24b49eba95a36bb8b0 +size 3124 diff --git a/data/minecraft/structure/ancient_city/walls/intact_lshape_wall_1.nbt b/data/minecraft/structure/ancient_city/walls/intact_lshape_wall_1.nbt index b0ae9355..83dce23b 100644 --- a/data/minecraft/structure/ancient_city/walls/intact_lshape_wall_1.nbt +++ b/data/minecraft/structure/ancient_city/walls/intact_lshape_wall_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:820e796e5b8fb0ff83de23ed85febd12b0f7ef0b10a2c8ec5f0cc9f9b1fa837c -size 2384 +oid sha256:2673afed247eec23cd7804f49e44e2c8d0d222a0b9c1fa8320ff4f02f87ccaf4 +size 2383 diff --git a/data/minecraft/structure/ancient_city/walls/ruined_corner_wall_1.nbt b/data/minecraft/structure/ancient_city/walls/ruined_corner_wall_1.nbt index ce7af501..1f103ae9 100644 --- a/data/minecraft/structure/ancient_city/walls/ruined_corner_wall_1.nbt +++ b/data/minecraft/structure/ancient_city/walls/ruined_corner_wall_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9708b69a5811067f7179d17951b5c6be614197a72cb2184fc21b308fb87b7e32 -size 4170 +oid sha256:ab11c53efb04f09c654a10f9e69080bfa115e9d0470f2eb26c0f889534e40d3f +size 4169 diff --git a/data/minecraft/structure/ancient_city/walls/ruined_corner_wall_2.nbt b/data/minecraft/structure/ancient_city/walls/ruined_corner_wall_2.nbt index b2f717d2..a34e77c9 100644 --- a/data/minecraft/structure/ancient_city/walls/ruined_corner_wall_2.nbt +++ b/data/minecraft/structure/ancient_city/walls/ruined_corner_wall_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:31b6c0873bccf648d4e479d45873277adc5fc017c2134bbb2e9106ca1da4a673 -size 3303 +oid sha256:3bfa42da8bf9cbe676b11609ed34e89105ca42b6a6ebf6eb619b0a3535da217b +size 3301 diff --git a/data/minecraft/structure/ancient_city/walls/ruined_horizontal_wall_stairs_1.nbt b/data/minecraft/structure/ancient_city/walls/ruined_horizontal_wall_stairs_1.nbt index a5af30c8..816710b2 100644 --- a/data/minecraft/structure/ancient_city/walls/ruined_horizontal_wall_stairs_1.nbt +++ b/data/minecraft/structure/ancient_city/walls/ruined_horizontal_wall_stairs_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a787af3a6bb635738c896f1023c3d72d665d71efd0e131b08fd53342c7a9cb8d -size 1490 +oid sha256:068a255868bc7e58c91b571898b31ec267a1c8c440d17e1aea1c62dd7ce42175 +size 1489 diff --git a/data/minecraft/structure/ancient_city/walls/ruined_horizontal_wall_stairs_2.nbt b/data/minecraft/structure/ancient_city/walls/ruined_horizontal_wall_stairs_2.nbt index 62074e36..fb0ecf63 100644 --- a/data/minecraft/structure/ancient_city/walls/ruined_horizontal_wall_stairs_2.nbt +++ b/data/minecraft/structure/ancient_city/walls/ruined_horizontal_wall_stairs_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8734e3243d9d448a8ffd0a1c7bdd903a70ae1695294822c94c31ae92f97a69ff -size 1975 +oid sha256:ab5433061642e8dcc60f95c085a23d60e5c4edb181beaf405eb656c450ad6ccb +size 1974 diff --git a/data/minecraft/structure/ancient_city/walls/ruined_horizontal_wall_stairs_3.nbt b/data/minecraft/structure/ancient_city/walls/ruined_horizontal_wall_stairs_3.nbt index cf18e5b4..02a5440e 100644 --- a/data/minecraft/structure/ancient_city/walls/ruined_horizontal_wall_stairs_3.nbt +++ b/data/minecraft/structure/ancient_city/walls/ruined_horizontal_wall_stairs_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e7977cc6bdbccfff88b09e00bd37748ef2faa2bd08c90cfba6cd3fcda1a025dd -size 1385 +oid sha256:19e15e56d1400d457cde8efdb1d0412e0d3e2fee0cf3e8b9340de5d5dc296840 +size 1384 diff --git a/data/minecraft/structure/ancient_city/walls/ruined_horizontal_wall_stairs_4.nbt b/data/minecraft/structure/ancient_city/walls/ruined_horizontal_wall_stairs_4.nbt index 497b7e64..fb02b0fc 100644 --- a/data/minecraft/structure/ancient_city/walls/ruined_horizontal_wall_stairs_4.nbt +++ b/data/minecraft/structure/ancient_city/walls/ruined_horizontal_wall_stairs_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b14873a02148ec3de0189c2b879b43398f0ef46ef0adc50c21efc0666642fe8c -size 1340 +oid sha256:5a4a6e5dc3034a367d47ef57bda525651caf2e7aebc5c528d43fa7ca56c93743 +size 1339 diff --git a/data/minecraft/structure/bastion/blocks/air.nbt b/data/minecraft/structure/bastion/blocks/air.nbt index bbe95741..8fa66cdb 100644 --- a/data/minecraft/structure/bastion/blocks/air.nbt +++ b/data/minecraft/structure/bastion/blocks/air.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b5489fbbdcc97748d90d2d82d38d2e22b29b75c9fb207ec1fff46ef9e0000b2d -size 228 +oid sha256:0f3ba3007695d437676e02c87bb7d37bec887b38ae7be287f6a063974c912246 +size 227 diff --git a/data/minecraft/structure/bastion/blocks/gold.nbt b/data/minecraft/structure/bastion/blocks/gold.nbt index 7792dd72..74e3e193 100644 --- a/data/minecraft/structure/bastion/blocks/gold.nbt +++ b/data/minecraft/structure/bastion/blocks/gold.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:36e8f46abdcc412f1bbbefbd86a4313dae1df33a7e7c9e9e1351a1f0150cd0ed -size 233 +oid sha256:6d478a6bd69a5dd079576e59a098d11f0931ef1ec15cb6c22e6d1c28960a1cfb +size 232 diff --git a/data/minecraft/structure/bastion/bridge/bridge_pieces/bridge.nbt b/data/minecraft/structure/bastion/bridge/bridge_pieces/bridge.nbt index de621cfb..39e292b2 100644 --- a/data/minecraft/structure/bastion/bridge/bridge_pieces/bridge.nbt +++ b/data/minecraft/structure/bastion/bridge/bridge_pieces/bridge.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9e8431e4841a562cbf47ebcb43fa0eca8bbdfa959f08a8b01d12a67653f6ff28 -size 15685 +oid sha256:e14df1f77b32f668fea44534abe1382aa122bf156fc5a2d3beb9029989e022a4 +size 15684 diff --git a/data/minecraft/structure/bastion/bridge/connectors/back_bridge_bottom.nbt b/data/minecraft/structure/bastion/bridge/connectors/back_bridge_bottom.nbt index b556d03a..eb1a3131 100644 --- a/data/minecraft/structure/bastion/bridge/connectors/back_bridge_bottom.nbt +++ b/data/minecraft/structure/bastion/bridge/connectors/back_bridge_bottom.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:93a641249d171938d837fb8b703eb15df464830563199e1b1cd0d1fa0ae3e628 -size 1427 +oid sha256:8b4fe154db40dfab7ee56023b0fc6e22a16f1d5a52b4c5fe736ac1c3ca0c0c56 +size 1426 diff --git a/data/minecraft/structure/bastion/bridge/connectors/back_bridge_top.nbt b/data/minecraft/structure/bastion/bridge/connectors/back_bridge_top.nbt index 145e4b00..2e167a85 100644 --- a/data/minecraft/structure/bastion/bridge/connectors/back_bridge_top.nbt +++ b/data/minecraft/structure/bastion/bridge/connectors/back_bridge_top.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c94c8b281cfb44a99039101977e4e2c597d2dbaeebd98346d6485b970de59726 -size 1373 +oid sha256:6ba6ddfa66bb5c82467d5fb8f6d5d59397ebdf11db8fed2cf02bc2b8d5dc1b8d +size 1372 diff --git a/data/minecraft/structure/bastion/bridge/legs/leg_0.nbt b/data/minecraft/structure/bastion/bridge/legs/leg_0.nbt index 93ab22c9..6669cf5c 100644 --- a/data/minecraft/structure/bastion/bridge/legs/leg_0.nbt +++ b/data/minecraft/structure/bastion/bridge/legs/leg_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f721fea0b6dc3f70b1260405b196f57fe2208117fd1a7112c714ee82954f779e -size 707 +oid sha256:187cd3d64d1e6268d7d45fccea96f45ccc7dd29520d3bdab3ee1ead39bbb977e +size 706 diff --git a/data/minecraft/structure/bastion/bridge/legs/leg_1.nbt b/data/minecraft/structure/bastion/bridge/legs/leg_1.nbt index 8b395e0f..6eecd215 100644 --- a/data/minecraft/structure/bastion/bridge/legs/leg_1.nbt +++ b/data/minecraft/structure/bastion/bridge/legs/leg_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:587ceffeea344118aba8192cd275ca8cabd82958503cc65d292e16d3d8a24ebe -size 738 +oid sha256:76d3f17374cbc96f4114d9a1cd58121c7993a9c12f1b1655f3b1b53e2a38e60e +size 737 diff --git a/data/minecraft/structure/bastion/bridge/rampart_plates/plate_0.nbt b/data/minecraft/structure/bastion/bridge/rampart_plates/plate_0.nbt index 41aa4faf..3471bb11 100644 --- a/data/minecraft/structure/bastion/bridge/rampart_plates/plate_0.nbt +++ b/data/minecraft/structure/bastion/bridge/rampart_plates/plate_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a317b27367adc6bd32cdf939b057155ba92979a53cb8703d9124d6ebdcd6b12a -size 2054 +oid sha256:757839915749b6429919ce287e1a68bc2f1ff131c57b7d8098f4ef0fe3299fe1 +size 2053 diff --git a/data/minecraft/structure/bastion/bridge/ramparts/rampart_0.nbt b/data/minecraft/structure/bastion/bridge/ramparts/rampart_0.nbt index 19d0790b..c51e5c25 100644 --- a/data/minecraft/structure/bastion/bridge/ramparts/rampart_0.nbt +++ b/data/minecraft/structure/bastion/bridge/ramparts/rampart_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8b20d818ff8c7e4f1db10d09c3575623f1bd5eebd96b63842bd7d2106584701e -size 12578 +oid sha256:3f3860aa6c887645481c7f30c353a2793716e992fc5dd7fde48279c84024db7c +size 12577 diff --git a/data/minecraft/structure/bastion/bridge/ramparts/rampart_1.nbt b/data/minecraft/structure/bastion/bridge/ramparts/rampart_1.nbt index 7346ba6b..61d95ff6 100644 --- a/data/minecraft/structure/bastion/bridge/ramparts/rampart_1.nbt +++ b/data/minecraft/structure/bastion/bridge/ramparts/rampart_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:af51d39709df7b22d6f265f5cda9d733c3eb982157c0afa3f60610d2bca5f313 -size 19409 +oid sha256:388ac7fe5f5737dee3ea947774bc86c8aa7e3a8402b8c35a0880d47b2a1ec091 +size 19408 diff --git a/data/minecraft/structure/bastion/bridge/starting_pieces/entrance.nbt b/data/minecraft/structure/bastion/bridge/starting_pieces/entrance.nbt index bf7a26ff..6637c957 100644 --- a/data/minecraft/structure/bastion/bridge/starting_pieces/entrance.nbt +++ b/data/minecraft/structure/bastion/bridge/starting_pieces/entrance.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6075e458b8fefd6315770fe0dd8976a52598819b351e162b7b34d1da1a7ed3e2 -size 41137 +oid sha256:9fa8029149fb5c32386fade235a9138bed45a58f713ec5c5b1fb34e90a5d6520 +size 41136 diff --git a/data/minecraft/structure/bastion/bridge/starting_pieces/entrance_base.nbt b/data/minecraft/structure/bastion/bridge/starting_pieces/entrance_base.nbt index a8f13d24..30457fef 100644 --- a/data/minecraft/structure/bastion/bridge/starting_pieces/entrance_base.nbt +++ b/data/minecraft/structure/bastion/bridge/starting_pieces/entrance_base.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:47089d5afa68eba75ef78181db21852bbb2fa52adc5e9974ff9cdb89918ac33c -size 45584 +oid sha256:496ea47ea0f7a9b72e6876ab93eb3f23da6f9096c91c6eca87331b1a4774adaa +size 45583 diff --git a/data/minecraft/structure/bastion/bridge/starting_pieces/entrance_face.nbt b/data/minecraft/structure/bastion/bridge/starting_pieces/entrance_face.nbt index 3155938a..95ea5b11 100644 --- a/data/minecraft/structure/bastion/bridge/starting_pieces/entrance_face.nbt +++ b/data/minecraft/structure/bastion/bridge/starting_pieces/entrance_face.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:43c8c026a0aabc352e3091e4c3aa95f6e5f13c404c1f5eba316c8ac4b1c383ea -size 2738 +oid sha256:c2378289138f1fd9a7ab11c0770d4d06cf4e3a49e750e73723010b9a3e375890 +size 2737 diff --git a/data/minecraft/structure/bastion/bridge/walls/wall_base_0.nbt b/data/minecraft/structure/bastion/bridge/walls/wall_base_0.nbt index 52175bfd..dea662ce 100644 --- a/data/minecraft/structure/bastion/bridge/walls/wall_base_0.nbt +++ b/data/minecraft/structure/bastion/bridge/walls/wall_base_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:02db6bff405c5532d080c73cd4e7f10b50dfd02632004459a3ae0c598af6d8c3 -size 17432 +oid sha256:8115ce6f3aafbb3575f01bc58d1f88e8bfac7570e3fcee526e02257024bea63e +size 17431 diff --git a/data/minecraft/structure/bastion/bridge/walls/wall_base_1.nbt b/data/minecraft/structure/bastion/bridge/walls/wall_base_1.nbt index f1edc181..004ba821 100644 --- a/data/minecraft/structure/bastion/bridge/walls/wall_base_1.nbt +++ b/data/minecraft/structure/bastion/bridge/walls/wall_base_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e72b030262620068355fb4e8121de82a5827adce44ef6cb5760e3396547ee298 +oid sha256:025fe0f071a4a4a15ba0633ad9a99398caa49682d426daecdd94b66a7a8abf8b size 17258 diff --git a/data/minecraft/structure/bastion/hoglin_stable/air_base.nbt b/data/minecraft/structure/bastion/hoglin_stable/air_base.nbt index b99d2689..d9bcb8f1 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/air_base.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/air_base.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dc69802e20b471cba56a92bd2fe25884baa21d6f941b734174a383889116dc1a -size 80382 +oid sha256:ae306c2fdf1856acfd577edff5d3b1a351f53c363f8583b2cc5cd1d67a772b5a +size 80381 diff --git a/data/minecraft/structure/bastion/hoglin_stable/connectors/end_post_connector.nbt b/data/minecraft/structure/bastion/hoglin_stable/connectors/end_post_connector.nbt index cf215867..77ace005 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/connectors/end_post_connector.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/connectors/end_post_connector.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ef40354ce802bc763d37c2f0e69aa02b70ecdc7010b9401e6ae6e0f510645cb1 -size 288 +oid sha256:3b9f8ae47571d40e69a040c97a03ada8e27c86a4f1132f30376c352c94c3e7c9 +size 287 diff --git a/data/minecraft/structure/bastion/hoglin_stable/large_stables/inner_0.nbt b/data/minecraft/structure/bastion/hoglin_stable/large_stables/inner_0.nbt index 4df73118..81ac950f 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/large_stables/inner_0.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/large_stables/inner_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e9a18dc3d5389441bd83a84f3b80f468a53d1293f4d7806aa7c753316b58c6db -size 1878 +oid sha256:2b54a66cef48e70c1795edb614c2ef066ceb851cd51d8f921976c6aa848d8970 +size 1877 diff --git a/data/minecraft/structure/bastion/hoglin_stable/large_stables/inner_1.nbt b/data/minecraft/structure/bastion/hoglin_stable/large_stables/inner_1.nbt index 3dd977f8..e0ca60c7 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/large_stables/inner_1.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/large_stables/inner_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bdb5594aff619ccc8a28309c97fc8e97e3ce3022e6a863c46f8da10e75c8ca90 -size 2076 +oid sha256:e45e0728b437c45b63efa583b2f6ca7c56f8be1d50a348a28b6f0d11b48d1f8a +size 2075 diff --git a/data/minecraft/structure/bastion/hoglin_stable/large_stables/inner_2.nbt b/data/minecraft/structure/bastion/hoglin_stable/large_stables/inner_2.nbt index 2f619297..dbb829eb 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/large_stables/inner_2.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/large_stables/inner_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1a4bb6d5e90ae4eb7ea0fc02bbd4e1462934a879d404d92700e53549eefaf0a3 -size 2352 +oid sha256:f5cb1dcd0371ec86da320433ddbfffe2c6edb76698d0aed6bc8a55e8dfc34fde +size 2351 diff --git a/data/minecraft/structure/bastion/hoglin_stable/large_stables/inner_3.nbt b/data/minecraft/structure/bastion/hoglin_stable/large_stables/inner_3.nbt index d1611fd5..339e67a9 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/large_stables/inner_3.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/large_stables/inner_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9fe2b5d600a1638509cea998e2baed495f38f54f64afddae9feebbbca53b9507 -size 2398 +oid sha256:391decf2d3d6223733c882e3a7c8a05b4a0e08d61c6244c77b1b5ab5ffc0edff +size 2397 diff --git a/data/minecraft/structure/bastion/hoglin_stable/large_stables/inner_4.nbt b/data/minecraft/structure/bastion/hoglin_stable/large_stables/inner_4.nbt index c610504b..47d5bca8 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/large_stables/inner_4.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/large_stables/inner_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:479dcf2c1bd2979f3ab658e034a9b39007a9783f0bab98ee982200256ae26976 -size 2145 +oid sha256:24e17275322672a2899c27b9ef994f45139b6f7a0a927a1f811a24fbcdf87c48 +size 2144 diff --git a/data/minecraft/structure/bastion/hoglin_stable/large_stables/outer_0.nbt b/data/minecraft/structure/bastion/hoglin_stable/large_stables/outer_0.nbt index 35d92f68..2f17641a 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/large_stables/outer_0.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/large_stables/outer_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1870648a258cd562b9b628bfcacc578c9bf38176232c3cffd8f0441febf8857e -size 1964 +oid sha256:5f0a2b239d85b644eb4d34405c0e070ee6aa37f891588c2dbb2b683e441700bb +size 1963 diff --git a/data/minecraft/structure/bastion/hoglin_stable/large_stables/outer_1.nbt b/data/minecraft/structure/bastion/hoglin_stable/large_stables/outer_1.nbt index 74687916..f1d4dde1 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/large_stables/outer_1.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/large_stables/outer_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8f504a2142f5a6b135cf473b49b50ccab25d16a858c73a8f4422cc56062a143c +oid sha256:2d821a62243cc288ea7d6926e163d90143c90dc3fdf92ec1e399dc27917a9e93 size 2317 diff --git a/data/minecraft/structure/bastion/hoglin_stable/large_stables/outer_2.nbt b/data/minecraft/structure/bastion/hoglin_stable/large_stables/outer_2.nbt index c2235c53..3a85aa8a 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/large_stables/outer_2.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/large_stables/outer_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:502d9e83623910e78522f76b3bd5e94a27db3e4cf34b682dc6e7e1e4a056e7e5 -size 2555 +oid sha256:a837322dd69c826059cffff50739d1bddc8507fc044205a03f5be4f5833fc7ff +size 2554 diff --git a/data/minecraft/structure/bastion/hoglin_stable/large_stables/outer_3.nbt b/data/minecraft/structure/bastion/hoglin_stable/large_stables/outer_3.nbt index 48e2ebcc..77b94e97 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/large_stables/outer_3.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/large_stables/outer_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:58043f70cb94f685da1c455909777438c9ef4eb377d9d5ff5eab05578fd2ffa8 -size 2452 +oid sha256:dc88a369c87901934b9329178ef209c57e175ece699fcd313ce0e2b0fcd5de8b +size 2451 diff --git a/data/minecraft/structure/bastion/hoglin_stable/large_stables/outer_4.nbt b/data/minecraft/structure/bastion/hoglin_stable/large_stables/outer_4.nbt index 229435ea..0e43b2d9 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/large_stables/outer_4.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/large_stables/outer_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:96783037e83ab1e86d5ad779ca82a887fe2cf0cdd474f7b13479411bde377703 -size 2397 +oid sha256:de19a6b09b2efc0a9d90034d67009ea71717f12ba630a238add8ec09fbca0dc2 +size 2396 diff --git a/data/minecraft/structure/bastion/hoglin_stable/posts/end_post.nbt b/data/minecraft/structure/bastion/hoglin_stable/posts/end_post.nbt index 5749d8ae..bb201c00 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/posts/end_post.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/posts/end_post.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2a90ef7d588903f13f12fefba7d016136c8e814f9fdb44c72797c46d50b3c92e -size 530 +oid sha256:7e88dfcfa4f01a63a753f31dfea4148e239bf0559121a216f5edb70f4aade04d +size 529 diff --git a/data/minecraft/structure/bastion/hoglin_stable/posts/stair_post.nbt b/data/minecraft/structure/bastion/hoglin_stable/posts/stair_post.nbt index 51b8b7ac..b7d62a12 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/posts/stair_post.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/posts/stair_post.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:992ab122506b5322684bfb35071774bb565cef54a76729d0c1887c3acf90f80c -size 1166 +oid sha256:1860551eb8adebd083a4e1317671d6780600856fc41afe335bd94e8e627a9f16 +size 1165 diff --git a/data/minecraft/structure/bastion/hoglin_stable/rampart_plates/rampart_plate_1.nbt b/data/minecraft/structure/bastion/hoglin_stable/rampart_plates/rampart_plate_1.nbt index ba53b13e..adaa2a63 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/rampart_plates/rampart_plate_1.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/rampart_plates/rampart_plate_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a879977e9037ba95a68678c40a4309519146224b56f03fe513eefb1d42e23d09 -size 2178 +oid sha256:963774393d83fab1e5e5c85df6fda2baa7455422903d41e416a79702094aa46c +size 2177 diff --git a/data/minecraft/structure/bastion/hoglin_stable/ramparts/ramparts_1.nbt b/data/minecraft/structure/bastion/hoglin_stable/ramparts/ramparts_1.nbt index 875803fb..897a9b14 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/ramparts/ramparts_1.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/ramparts/ramparts_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9ef8f72300d05f9cf3a8c773e9279ff831fef869d6cd749e68cd12406cc74813 -size 19109 +oid sha256:43753a2338a32c0d0399c5ee5346377d51b4ee00f0fc7e86922ca3de734d050e +size 19108 diff --git a/data/minecraft/structure/bastion/hoglin_stable/ramparts/ramparts_2.nbt b/data/minecraft/structure/bastion/hoglin_stable/ramparts/ramparts_2.nbt index a8797c4d..0e0517f2 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/ramparts/ramparts_2.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/ramparts/ramparts_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8a9854c8b5618a1426d30f9ba8a77fccd48384ee800bb2322cfff5f0e1237cd8 -size 12207 +oid sha256:2b9b9b6ae9f2d8b7cffdc658895fdbcf520d73a4bafaee57dc905e0324e4f290 +size 12206 diff --git a/data/minecraft/structure/bastion/hoglin_stable/ramparts/ramparts_3.nbt b/data/minecraft/structure/bastion/hoglin_stable/ramparts/ramparts_3.nbt index 037b9a97..563a1bf0 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/ramparts/ramparts_3.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/ramparts/ramparts_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:39577d6818e7473936e96a2e47422907d15b038835194e5c4d74fe37b695dc66 -size 6390 +oid sha256:187a9f8423a4cf70910c9535af0ef5b7bb3a111cd67ea0afa01d4f7ad2cc6880 +size 6388 diff --git a/data/minecraft/structure/bastion/hoglin_stable/small_stables/inner_0.nbt b/data/minecraft/structure/bastion/hoglin_stable/small_stables/inner_0.nbt index a11e93e4..c04462a7 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/small_stables/inner_0.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/small_stables/inner_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c0008e9fe487caca4d17270d5d9dd9bd608d89bb96a82bef896b01cf41b061ee -size 1896 +oid sha256:c4e0e024be0df72c60fa8818737279a40ca9e43f137455af9e1a99714ad192a0 +size 1895 diff --git a/data/minecraft/structure/bastion/hoglin_stable/small_stables/inner_1.nbt b/data/minecraft/structure/bastion/hoglin_stable/small_stables/inner_1.nbt index 5ff210d9..da589f9e 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/small_stables/inner_1.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/small_stables/inner_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5a3516f2641c9899f7a3cdc26c0717788acfabdbd59a3942201e7696f733c21b +oid sha256:ca7daa64f678a5f22b985de11877545c405335b589ecf9aa36fbb8aa48dbd862 size 1979 diff --git a/data/minecraft/structure/bastion/hoglin_stable/small_stables/inner_2.nbt b/data/minecraft/structure/bastion/hoglin_stable/small_stables/inner_2.nbt index 075496ec..1252c590 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/small_stables/inner_2.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/small_stables/inner_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c1cc4cd74ebf1119212979220471dd6861a1b32e95acc1832cb872a3f20c1dd3 +oid sha256:03bc18ecfa17d4e4e59482f8be4f4909e3834412822b022cd14ff4ab02865486 size 2209 diff --git a/data/minecraft/structure/bastion/hoglin_stable/small_stables/inner_3.nbt b/data/minecraft/structure/bastion/hoglin_stable/small_stables/inner_3.nbt index 0cb20f80..daf8750e 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/small_stables/inner_3.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/small_stables/inner_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:49e900acbddac20e4b9b3941654d312b8542ef8ce5387f8ed15c93f0f2f25b43 -size 1680 +oid sha256:58e2532b94efdb8e7dfb61eb0604effdb59ba5a77c775c6828e46aea6f0efc92 +size 1679 diff --git a/data/minecraft/structure/bastion/hoglin_stable/small_stables/outer_0.nbt b/data/minecraft/structure/bastion/hoglin_stable/small_stables/outer_0.nbt index d755ab98..34d019e4 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/small_stables/outer_0.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/small_stables/outer_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bcfd3ffb221a552abbbd01b5c71d1866439a6d83bfb7a33a80cc54e4164718b2 -size 2137 +oid sha256:ccccb7805ccd2e079a76586e599eafaf0851b0f06b7c1fefbb63c5ee7f3128b9 +size 2134 diff --git a/data/minecraft/structure/bastion/hoglin_stable/small_stables/outer_1.nbt b/data/minecraft/structure/bastion/hoglin_stable/small_stables/outer_1.nbt index 53335e92..994578bb 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/small_stables/outer_1.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/small_stables/outer_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a1abc26f6bc83e46dd6e631be7b87962644157e579743e72cbb3e5605984645f -size 2064 +oid sha256:30c5dbc4bfbb0fb86ca29258edef0829ee863481279a0a8cac9bf080fcb713f0 +size 2063 diff --git a/data/minecraft/structure/bastion/hoglin_stable/small_stables/outer_2.nbt b/data/minecraft/structure/bastion/hoglin_stable/small_stables/outer_2.nbt index 2db26339..fd498d83 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/small_stables/outer_2.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/small_stables/outer_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fbc9f68f8b56b3fa15c156adf5828277410fa85f889060c672827279f12d34ff -size 2149 +oid sha256:2e22ee94e6fe753a30e80ecdb937d041ed0f6d879c19a631b409ed5fe1c30ada +size 2148 diff --git a/data/minecraft/structure/bastion/hoglin_stable/small_stables/outer_3.nbt b/data/minecraft/structure/bastion/hoglin_stable/small_stables/outer_3.nbt index a1afcfe2..d3fb0d57 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/small_stables/outer_3.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/small_stables/outer_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a46b605bb387ad5d89f8533555861f0e523e9aa77b1cbe39dd387785111838ca -size 1849 +oid sha256:69a5edb06b08040e1f645d291985236d688b8b9db9fc2e5a05b230586c78f775 +size 1848 diff --git a/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_1_0.nbt b/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_1_0.nbt index 2ce519de..46e755a0 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_1_0.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_1_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7a5a967d422ef93f290c736501da40786401be471a5e72079f2f693a1a023e5f -size 4465 +oid sha256:b5e236f1d5f7e9d9b36f56b1d5a87562a4fa93e152061a2ae395a0a2ac26981e +size 4464 diff --git a/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_1_1.nbt b/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_1_1.nbt index f9477426..5c2aaf2f 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_1_1.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_1_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:02df9b9216eed70e718308b8e57c75b6e7fbdd0d0359fbfd1e2341e91e99c670 -size 4274 +oid sha256:4088ec0fdf1b34ff06b82767a73d7a3f2aaad3f41fba8f9d38ead281d1cb06ed +size 4273 diff --git a/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_1_2.nbt b/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_1_2.nbt index c80e4be6..b5dd0715 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_1_2.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_1_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5a8d7544ff8ed02b86e2bf640acb2861e5ed12745afe32bf94d62dbe6e4a402f -size 4336 +oid sha256:0db7ace244bf10ccbbf46d280fc174cce50b0a22c185ac96c5445146e8372180 +size 4335 diff --git a/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_1_3.nbt b/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_1_3.nbt index d066cdca..4d328be2 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_1_3.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_1_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:03f7f7ecef983ade733b2a7c50e515bd5c21ad0f31ac74ee9d4547643af50313 -size 4497 +oid sha256:df5d1d27e44a93f15bd4837134837eeb31d9c6717c790213ac48be91080a3655 +size 4496 diff --git a/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_1_4.nbt b/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_1_4.nbt index 14bec0b8..00296978 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_1_4.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_1_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4c75239e7fda377f7d679282988491cd5d90b6dc18c65b62764f3b921d97fb22 +oid sha256:6b2e0ac3b836e1380b33cde916fca5a7f76751ae71fa1e71b9dff52dc217dcc8 size 4438 diff --git a/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_2_0.nbt b/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_2_0.nbt index 94fd7d37..ef1303c5 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_2_0.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_2_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:58034866aee38de83e9408b8bfac79b01dfe3eb4dd105ef6562efff545ffcad9 -size 4413 +oid sha256:7f2a5403bf07d3fef72cd18ee664a158a3d81db8bd594f19a6f65360ce542151 +size 4412 diff --git a/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_2_1.nbt b/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_2_1.nbt index e360dc44..add6bc49 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_2_1.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_2_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4705a57318e912c029163cde634de5c75854ad23fcad84d5abd27617ae1ae40c +oid sha256:39fc5d167b4f8fef952bf1b1fc98d5e883945c8b5977e7620c59899ad3127fd6 size 4333 diff --git a/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_2_2.nbt b/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_2_2.nbt index 73110f78..c049af5a 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_2_2.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_2_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b6e3d5684f1025a08a6fe1f4df84e4ed88e776e8f60c7f61db3df1ae80c435f6 -size 4118 +oid sha256:070c90c043ebdf081a5f07c025a2176bdf5b9ab15027c6d0da81fb4ba4074260 +size 4117 diff --git a/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_2_3.nbt b/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_2_3.nbt index 6fefb2e0..1b22e381 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_2_3.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_2_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a0c9cb47f5518dcb1948fd8fb3b2c53f6fe891b337977cf1907ff520b99de261 +oid sha256:94e5943342537759fd386bcb76dbead77bdbb513e36542ad22adc1dc0721bab8 size 3301 diff --git a/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_2_4.nbt b/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_2_4.nbt index 442293dc..f4f122fb 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_2_4.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_2_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:61dbf166b1ed4f3fb8feb3471fa672bd8bc3a4091b15153245ce5af354b01fe1 -size 4378 +oid sha256:3f8234323fab5265c569e3fc1cccc759d993c7166c89835cdc9f3baa18c49693 +size 4377 diff --git a/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_3_0.nbt b/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_3_0.nbt index 79cf9e4f..5a1975e1 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_3_0.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_3_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e9a38f126544fe51d9c0381132ea5a1c2a8f856c106344ec9ab4ffef5f0c44a4 -size 4020 +oid sha256:9b716cb85dd22806f0d461dbcf34720059776440671486e6ada81e99670e88c2 +size 4018 diff --git a/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_3_1.nbt b/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_3_1.nbt index 0dc9fef5..67998ec6 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_3_1.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_3_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6be08ffbd0fb42759e28ca874992dc358b0a6999a7291937e00526ebdc232b5d -size 4004 +oid sha256:9f77aba1190dd681d0e8a025c2b9a844734cfcdf384b8efdc9e012d6e09cc688 +size 4003 diff --git a/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_3_2.nbt b/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_3_2.nbt index 8bc8159c..8460f6f8 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_3_2.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_3_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e8490738a10ae3510a74d8d1edc3b8d4ebd6d99bbcba721be3567f041cad7822 -size 4209 +oid sha256:7f201d24ed7cd7f54025a8261883a3e02f1f5bd05b776ac8990bb6400dc5e100 +size 4208 diff --git a/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_3_3.nbt b/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_3_3.nbt index 0eba4366..6b134972 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_3_3.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_3_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ee72d8985c15882bca3808302bc2e86e721af9f4d3981f38e91883be3a7a56ee +oid sha256:e41a881e0b567ad55bb2208bd4547022b96578e85f9b448376d96b2d06cd1abc size 4321 diff --git a/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_3_4.nbt b/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_3_4.nbt index 345bc274..fd8241b1 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_3_4.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_3_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cb2239baa840a3ae4500cc445dc0dd8cba49cf4d400d4a869910ab71c00b2ff9 -size 2778 +oid sha256:d088720aaa9371c3a5838c68a789020b9c3beaa3a09de50cf9b37a037bf3b898 +size 2777 diff --git a/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/stairs_0_mirrored.nbt b/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/stairs_0_mirrored.nbt index 226f4ac4..03a93ef7 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/stairs_0_mirrored.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/stairs_0_mirrored.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8397b44bf73307566d1e766c97111d204c31c0cdc2866daf7ff069ff75d0b2cb -size 4611 +oid sha256:ca419c3548750ab3478958e59fe6e5b94b872a26ecfbc173493bbd461f773b3d +size 4610 diff --git a/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/stairs_1_mirrored.nbt b/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/stairs_1_mirrored.nbt index 1262461a..19944b29 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/stairs_1_mirrored.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/stairs_1_mirrored.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e4feb09b9f6a66b57968ccab8a7123576505593af4dd0396c032054c55d5c49f -size 4626 +oid sha256:1a9033505661fd2820271437c37c6f10a94f52ff0c125f9a14c85ba09ef7fefa +size 4625 diff --git a/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/stairs_2_mirrored.nbt b/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/stairs_2_mirrored.nbt index 9615ae03..94f5857f 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/stairs_2_mirrored.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/stairs_2_mirrored.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d06db246f386e4bc012ab61d641295cac0f4f3a6f7d84992380cac10d43a8353 -size 4543 +oid sha256:960de95f284d9b9ba271e0e753c9f70596fc495622df26e36f488752dcf04dd7 +size 4542 diff --git a/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/stairs_3_mirrored.nbt b/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/stairs_3_mirrored.nbt index dd087586..33ff0b3d 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/stairs_3_mirrored.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/stairs_3_mirrored.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c5b758fa67ab10027bea53702857d4c5ffc266e61b359034346a696243ca1b69 -size 4741 +oid sha256:9318cbf8788287408476a184aa9880541afab481887faa85063b6231183cec3c +size 4740 diff --git a/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/stairs_4_mirrored.nbt b/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/stairs_4_mirrored.nbt index d9d1021b..96ac2f48 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/stairs_4_mirrored.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/stairs_4_mirrored.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d79c37f6ba39096214ab38d9485c657490e431e08a0a5200c03005180a621a6e +oid sha256:badb7e3d10501fe76b8bed232baa00cddc9006c381cf60e5d9774fe0aa0cbb41 size 4590 diff --git a/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/starting_stairs_0.nbt b/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/starting_stairs_0.nbt index b4fefe50..840030ac 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/starting_stairs_0.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/starting_stairs_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:df62ed4bd7d4fd18cdceddb215e23f87d545136a928bcb88017727efe6a0e7c1 -size 4627 +oid sha256:d1760e3c785c598e4b8ec9d1f256248a467ec45811d10ec77cea9cbf65d36e5d +size 4626 diff --git a/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/starting_stairs_1.nbt b/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/starting_stairs_1.nbt index 1709013c..3f9cf1c1 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/starting_stairs_1.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/starting_stairs_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:98d5b9f7dc45f20b2d92e2df3179abc34e72f7cb5f6173ad7e16e139ef6b47fe +oid sha256:e5392189db0c3df06dd0fe1ab1679a91b084791ee5b96436d48870497df95072 size 4910 diff --git a/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/starting_stairs_2.nbt b/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/starting_stairs_2.nbt index a828473b..b7afc517 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/starting_stairs_2.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/starting_stairs_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2570c48311713ca4372e22f56fd760513f9304019cf281346d65c1ac89b2d398 +oid sha256:91bf80429b1dd48d35736c7e09aaaa94c2e2b5b95bf156add6a719dc5f731ceb size 4909 diff --git a/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/starting_stairs_3.nbt b/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/starting_stairs_3.nbt index d38aa457..4317a538 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/starting_stairs_3.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/starting_stairs_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ee33e3b7baba51fc50e4dcda14d52937f8bb536bfd9c45532e33bfd5311d91ee +oid sha256:05fa5a5538e3bd4ee74dacf3d927753ed96e88b764b89ddebc7c5dc94e6eb662 size 4915 diff --git a/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/starting_stairs_4.nbt b/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/starting_stairs_4.nbt index b1c0d002..c7710f6f 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/starting_stairs_4.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/starting_pieces/starting_stairs_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1d55923d29a980af3d933bb62906098bea73f72e0783a0446fa70118bbe11bf7 +oid sha256:9de267a3aed911e1e1fc28fe9de7d337e0d208e9f0c364bf2a810a3f7a3a895b size 4584 diff --git a/data/minecraft/structure/bastion/hoglin_stable/walls/side_wall_0.nbt b/data/minecraft/structure/bastion/hoglin_stable/walls/side_wall_0.nbt index 17e5a338..2e03dcbe 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/walls/side_wall_0.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/walls/side_wall_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:db43f296fa154f7e9b598b98bd28336500919dfd17dfd83bb34cd8fbe2115fb5 -size 16617 +oid sha256:399ac4f5137ad32364f8da49bc6a3853cb7e776330dfea25c1e5a189b383d9a3 +size 16616 diff --git a/data/minecraft/structure/bastion/hoglin_stable/walls/side_wall_1.nbt b/data/minecraft/structure/bastion/hoglin_stable/walls/side_wall_1.nbt index f0c38e79..d3703ef3 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/walls/side_wall_1.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/walls/side_wall_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b2c792eb500b968932ec8238be120ba66e27f8c011f6a9411ef15d1b19c44683 +oid sha256:29532ad5a4c03c85eb4f749fee80c9714dc3c00a6bbadbfc424e76ff8c41bcef size 17025 diff --git a/data/minecraft/structure/bastion/hoglin_stable/walls/wall_base.nbt b/data/minecraft/structure/bastion/hoglin_stable/walls/wall_base.nbt index d9b23992..531a1372 100644 --- a/data/minecraft/structure/bastion/hoglin_stable/walls/wall_base.nbt +++ b/data/minecraft/structure/bastion/hoglin_stable/walls/wall_base.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:efd276f9dfe3ed396c77026efbaaf3c8d9b7b1678b268fbdef646bd23964a41e -size 16415 +oid sha256:d11f3277dd9742df0cbd3638be17764e0dd414d8aec7f1570be803c1bbd8662b +size 16414 diff --git a/data/minecraft/structure/bastion/mobs/crossbow_piglin.nbt b/data/minecraft/structure/bastion/mobs/crossbow_piglin.nbt index 8104c6d7..29d9c4c0 100644 --- a/data/minecraft/structure/bastion/mobs/crossbow_piglin.nbt +++ b/data/minecraft/structure/bastion/mobs/crossbow_piglin.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0d6c179d5f30e46c2ff3e0cb76ba17a4d22533cf06c0190fa8cddd00972873aa +oid sha256:7a13788139815c1abe255a35f7f99592f711441c9f203e3351e64bf3d0c2207f size 683 diff --git a/data/minecraft/structure/bastion/mobs/empty.nbt b/data/minecraft/structure/bastion/mobs/empty.nbt index 9ae34adb..a2314e0f 100644 --- a/data/minecraft/structure/bastion/mobs/empty.nbt +++ b/data/minecraft/structure/bastion/mobs/empty.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d7a6f3430e7cae3ee9717c418299f13f181050f4f51cafac15a949066f0f7e48 -size 228 +oid sha256:7be642263f4a86f7d44f9745ba4ffe401fb1f4b685a7c546d4f0214031126e8d +size 227 diff --git a/data/minecraft/structure/bastion/mobs/hoglin.nbt b/data/minecraft/structure/bastion/mobs/hoglin.nbt index aa6ddced..31f42568 100644 --- a/data/minecraft/structure/bastion/mobs/hoglin.nbt +++ b/data/minecraft/structure/bastion/mobs/hoglin.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:be8828a48b4e4710101000a49242c308109dc47da50fec0d50e78072bcca774a -size 706 +oid sha256:a86583dd9a3b40680173db72fb9b08ae4fc85905560f3dadd9209b9f92aeff06 +size 705 diff --git a/data/minecraft/structure/bastion/mobs/melee_piglin.nbt b/data/minecraft/structure/bastion/mobs/melee_piglin.nbt index c59fa584..aad3a959 100644 --- a/data/minecraft/structure/bastion/mobs/melee_piglin.nbt +++ b/data/minecraft/structure/bastion/mobs/melee_piglin.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:92c411a4eb82275726cad7e32dde1863a25577ca6e1a3065247f0f4fb35dc81e +oid sha256:8cfe4ab6b011b88bcb585421d2968b3be220864904efdca0d61eae267e7f05fd size 651 diff --git a/data/minecraft/structure/bastion/mobs/melee_piglin_always.nbt b/data/minecraft/structure/bastion/mobs/melee_piglin_always.nbt index 7ba206c3..c2bec405 100644 --- a/data/minecraft/structure/bastion/mobs/melee_piglin_always.nbt +++ b/data/minecraft/structure/bastion/mobs/melee_piglin_always.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:07f304e4a7707f70796187805d8c79336fed7a2427aad6de01e43e4f17e44430 -size 644 +oid sha256:4c1aa1d33cfe5226a606974a55ae411c8aa49d24ecaa45a3eead2b2f44367aeb +size 643 diff --git a/data/minecraft/structure/bastion/mobs/sword_piglin.nbt b/data/minecraft/structure/bastion/mobs/sword_piglin.nbt index 652b8671..12608881 100644 --- a/data/minecraft/structure/bastion/mobs/sword_piglin.nbt +++ b/data/minecraft/structure/bastion/mobs/sword_piglin.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8fcb4bd256ab49c4fe571fffea3a75ce8ef0c7b79c4cdef8f56b2cdb9add16df +oid sha256:ab2d5145f457ce2f56cb50e0528833bdcbf04b8f9caec46ed7d5ec980b7eefcd size 690 diff --git a/data/minecraft/structure/bastion/treasure/bases/centers/center_0.nbt b/data/minecraft/structure/bastion/treasure/bases/centers/center_0.nbt index 8409575f..420823c7 100644 --- a/data/minecraft/structure/bastion/treasure/bases/centers/center_0.nbt +++ b/data/minecraft/structure/bastion/treasure/bases/centers/center_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9f8744a9c94377a604d000cabd5cf0885f119339c5b237560b7093b5d0fe26bd -size 1024 +oid sha256:6975352ebaf2e08e7461fa31458bb6e14a2061fcae803f7876fada8875908ff7 +size 1023 diff --git a/data/minecraft/structure/bastion/treasure/bases/centers/center_1.nbt b/data/minecraft/structure/bastion/treasure/bases/centers/center_1.nbt index 926aa9f6..f6733b08 100644 --- a/data/minecraft/structure/bastion/treasure/bases/centers/center_1.nbt +++ b/data/minecraft/structure/bastion/treasure/bases/centers/center_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cd97175eb47121edfbf8fcc97689b5cfbba660611e4d980b6bf7154287ed19fc +oid sha256:1953f7e8a8f07724f7914d9920897d218e304a76927eee59d8669be100dbe2f2 size 959 diff --git a/data/minecraft/structure/bastion/treasure/bases/centers/center_2.nbt b/data/minecraft/structure/bastion/treasure/bases/centers/center_2.nbt index f33c9bf1..841ad734 100644 --- a/data/minecraft/structure/bastion/treasure/bases/centers/center_2.nbt +++ b/data/minecraft/structure/bastion/treasure/bases/centers/center_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:193ec8c4face5f6b7bf968d3445c49c1ecb6ac62ae884249957c9bc648a2164a -size 1075 +oid sha256:12c9dbbcbe47a2f63ab38af2abbcb31533a46f3b57850f9dc4bd1751e287cdb8 +size 1074 diff --git a/data/minecraft/structure/bastion/treasure/bases/centers/center_3.nbt b/data/minecraft/structure/bastion/treasure/bases/centers/center_3.nbt index ebe58502..112a4a80 100644 --- a/data/minecraft/structure/bastion/treasure/bases/centers/center_3.nbt +++ b/data/minecraft/structure/bastion/treasure/bases/centers/center_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5fb5b95320fbd14eaef05fdd151f55e7575962837d370323d1a0f2a624ac220e +oid sha256:2b3dc47b625c7a1e20b83c9c9c84fbe9d22f80359dd20e53b384fca193dcd629 size 735 diff --git a/data/minecraft/structure/bastion/treasure/bases/lava_basin.nbt b/data/minecraft/structure/bastion/treasure/bases/lava_basin.nbt index a07b39da..7a2f7f48 100644 --- a/data/minecraft/structure/bastion/treasure/bases/lava_basin.nbt +++ b/data/minecraft/structure/bastion/treasure/bases/lava_basin.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:10a84db36fd57d0e6c63bfefea5d3aea9ae33590595030db240bea3be35ae6e4 -size 6584 +oid sha256:63840f308632b5cc63a30b3d085276b2ed71565fb4c606b98c3b867aba6df80b +size 6583 diff --git a/data/minecraft/structure/bastion/treasure/big_air_full.nbt b/data/minecraft/structure/bastion/treasure/big_air_full.nbt index e6ad4fe3..865655c4 100644 --- a/data/minecraft/structure/bastion/treasure/big_air_full.nbt +++ b/data/minecraft/structure/bastion/treasure/big_air_full.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6e2054862ba0cd707efbdeeea72c3b510231fdd55a8393d897edcd716962198f -size 69673 +oid sha256:917dec24195b123dff44fbc22bd59a14d2f20c9b2b63b016e39f9df7adc4671d +size 69672 diff --git a/data/minecraft/structure/bastion/treasure/brains/center_brain.nbt b/data/minecraft/structure/bastion/treasure/brains/center_brain.nbt index a4a4decc..89408f58 100644 --- a/data/minecraft/structure/bastion/treasure/brains/center_brain.nbt +++ b/data/minecraft/structure/bastion/treasure/brains/center_brain.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:39bff776c2ac53c6122253674cf0b48312443d93b698997f9defd5872e512c09 +oid sha256:608a222330ee82b93e3fe981c4f04d82c2624631cb7578e69003850cfd45503b size 415 diff --git a/data/minecraft/structure/bastion/treasure/connectors/center_to_wall_middle.nbt b/data/minecraft/structure/bastion/treasure/connectors/center_to_wall_middle.nbt index 10882504..ac6b2a5f 100644 --- a/data/minecraft/structure/bastion/treasure/connectors/center_to_wall_middle.nbt +++ b/data/minecraft/structure/bastion/treasure/connectors/center_to_wall_middle.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:54c5caa9146f718d41639539bad82a01b53449bb16d75a976d3dbedb8f2e435c -size 287 +oid sha256:484c0a630675129c9c9270553afb27969df77001d9d31a651eac90e717a11a4f +size 286 diff --git a/data/minecraft/structure/bastion/treasure/connectors/center_to_wall_top.nbt b/data/minecraft/structure/bastion/treasure/connectors/center_to_wall_top.nbt index ca3e5540..861ec291 100644 --- a/data/minecraft/structure/bastion/treasure/connectors/center_to_wall_top.nbt +++ b/data/minecraft/structure/bastion/treasure/connectors/center_to_wall_top.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1e40564a5205f338ecb6d0a226a188c2349893cd8124b748ef371df492839009 -size 286 +oid sha256:0aae594fd9ebc20d055213c7ede706f029f3f454b6df10664d73fa8b69e29c9a +size 285 diff --git a/data/minecraft/structure/bastion/treasure/connectors/center_to_wall_top_entrance.nbt b/data/minecraft/structure/bastion/treasure/connectors/center_to_wall_top_entrance.nbt index 31b57a1c..828f0251 100644 --- a/data/minecraft/structure/bastion/treasure/connectors/center_to_wall_top_entrance.nbt +++ b/data/minecraft/structure/bastion/treasure/connectors/center_to_wall_top_entrance.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cc54bcdb7830aecec1e1f15a05d76e0e7603b97b6605c373ba90a77a00f6b6ef -size 290 +oid sha256:a34afde69dbe111620b3d6a266f610666759e58ca1d4d5a1db81ee7648892f1d +size 289 diff --git a/data/minecraft/structure/bastion/treasure/corners/bottom/corner_0.nbt b/data/minecraft/structure/bastion/treasure/corners/bottom/corner_0.nbt index 16a158c8..db6318f6 100644 --- a/data/minecraft/structure/bastion/treasure/corners/bottom/corner_0.nbt +++ b/data/minecraft/structure/bastion/treasure/corners/bottom/corner_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e012b9f96c7da755a69c3270b230f63bf7f6c7b8893bf2e496a0018f16691755 -size 1684 +oid sha256:70f5fbe708dd3f4361d806bdb3244f7331425ae25edfb659ee0b708b79c9dcae +size 1683 diff --git a/data/minecraft/structure/bastion/treasure/corners/bottom/corner_1.nbt b/data/minecraft/structure/bastion/treasure/corners/bottom/corner_1.nbt index dcd654d8..486b0204 100644 --- a/data/minecraft/structure/bastion/treasure/corners/bottom/corner_1.nbt +++ b/data/minecraft/structure/bastion/treasure/corners/bottom/corner_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fac98a30a6a885f5ba8e59a3d2098f21ac2db458470c16b0f8ce1147d9ff1fe7 +oid sha256:c8a6685babaea41060b0ee989b090b72e8f319ec9444800628f5b9632a924db7 size 1680 diff --git a/data/minecraft/structure/bastion/treasure/corners/edges/bottom.nbt b/data/minecraft/structure/bastion/treasure/corners/edges/bottom.nbt index 298932c8..67a0ca17 100644 --- a/data/minecraft/structure/bastion/treasure/corners/edges/bottom.nbt +++ b/data/minecraft/structure/bastion/treasure/corners/edges/bottom.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d13fdb1acd34f8d2cc2506e66a39ff313f26d8c2417922ed2cd304e068815fde -size 450 +oid sha256:fc8d5974b1b3e9e5cfd8fe4f1cc7169cbb8b80b201471bbf70c1f9951dd6947e +size 449 diff --git a/data/minecraft/structure/bastion/treasure/corners/edges/middle.nbt b/data/minecraft/structure/bastion/treasure/corners/edges/middle.nbt index 801df979..28f406be 100644 --- a/data/minecraft/structure/bastion/treasure/corners/edges/middle.nbt +++ b/data/minecraft/structure/bastion/treasure/corners/edges/middle.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:10c7f245a08fb6f57ef220076e1e8ac03ed4e947fa5e54af99865b06c19d2cec -size 440 +oid sha256:474c95cbdca0f3624e2345d5cc1669555e14db0b33e5d51c8b087e05072d9dee +size 438 diff --git a/data/minecraft/structure/bastion/treasure/corners/edges/top.nbt b/data/minecraft/structure/bastion/treasure/corners/edges/top.nbt index 2045a54f..9cc01b9f 100644 --- a/data/minecraft/structure/bastion/treasure/corners/edges/top.nbt +++ b/data/minecraft/structure/bastion/treasure/corners/edges/top.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f109b49db3cbd3dc8970b4f1860239a9c830290699f13ea60958dcc781b102a1 -size 456 +oid sha256:94e62617abe7fd95fb36a65af306f96c2ddab8217f1f9c771628726fed242d6e +size 455 diff --git a/data/minecraft/structure/bastion/treasure/corners/middle/corner_0.nbt b/data/minecraft/structure/bastion/treasure/corners/middle/corner_0.nbt index d7361e7d..abfafe11 100644 --- a/data/minecraft/structure/bastion/treasure/corners/middle/corner_0.nbt +++ b/data/minecraft/structure/bastion/treasure/corners/middle/corner_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0f474bb227ab1429e6a57a0b72d8757738ef923714487a40e3ce307f7a1d78f9 -size 1585 +oid sha256:36647452b2b1154ea3731c6c5d8bf9ff854b3860f9ae08c6715aff23e697f100 +size 1584 diff --git a/data/minecraft/structure/bastion/treasure/corners/middle/corner_1.nbt b/data/minecraft/structure/bastion/treasure/corners/middle/corner_1.nbt index fe24e4af..1eebf0cf 100644 --- a/data/minecraft/structure/bastion/treasure/corners/middle/corner_1.nbt +++ b/data/minecraft/structure/bastion/treasure/corners/middle/corner_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fdd8bb9dbff7a51e673db904ea4e31fd5ccb1ce1c78d31aa05aaae2d4510deb5 +oid sha256:d1baf6294dacfb382678f5b8f7a9750b12a91de2d91397cd592da4de82d34142 size 1537 diff --git a/data/minecraft/structure/bastion/treasure/corners/top/corner_0.nbt b/data/minecraft/structure/bastion/treasure/corners/top/corner_0.nbt index 40b75f0b..c01a789e 100644 --- a/data/minecraft/structure/bastion/treasure/corners/top/corner_0.nbt +++ b/data/minecraft/structure/bastion/treasure/corners/top/corner_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7e0ec6781d702eb55789716f5d6697ab5c68bc319ed2fd85155f9f5c7b9ff4d3 -size 1553 +oid sha256:915a3a311aca311b9a516b36efba45cfc1d0cca4d3983b32321d7ef74a0b5f6b +size 1552 diff --git a/data/minecraft/structure/bastion/treasure/corners/top/corner_1.nbt b/data/minecraft/structure/bastion/treasure/corners/top/corner_1.nbt index 852548b8..c645e04f 100644 --- a/data/minecraft/structure/bastion/treasure/corners/top/corner_1.nbt +++ b/data/minecraft/structure/bastion/treasure/corners/top/corner_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0d5ab2b97721d82ebcd897ba1c1f84b4fa21ab123ea2c2566a786d9625aa530d -size 1572 +oid sha256:c23dabcd75a9c4626317e37c90177188f1a9f8877125795a2a790b4fd786d7f3 +size 1571 diff --git a/data/minecraft/structure/bastion/treasure/entrances/entrance_0.nbt b/data/minecraft/structure/bastion/treasure/entrances/entrance_0.nbt index 81c9f2af..4a1b5a62 100644 --- a/data/minecraft/structure/bastion/treasure/entrances/entrance_0.nbt +++ b/data/minecraft/structure/bastion/treasure/entrances/entrance_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:77b00e676128083bfe95b61fec513016450c15434e4ddc3bd3248e6303f8101d -size 11196 +oid sha256:46fc6a4867779bad3f5de0e865fcbb29c2ca2d7140cdfcd0f341780963bdee71 +size 11195 diff --git a/data/minecraft/structure/bastion/treasure/extensions/empty.nbt b/data/minecraft/structure/bastion/treasure/extensions/empty.nbt index a9cc97a2..482953ae 100644 --- a/data/minecraft/structure/bastion/treasure/extensions/empty.nbt +++ b/data/minecraft/structure/bastion/treasure/extensions/empty.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:514a132b4037fb5bbb42df49d4e8236189cafecb2d958d2620be64440383af4b -size 232 +oid sha256:b8af77358fe684aa86536729a5e80d50fde52e9d321ee949cfb91e0a043ef567 +size 231 diff --git a/data/minecraft/structure/bastion/treasure/extensions/fire_room.nbt b/data/minecraft/structure/bastion/treasure/extensions/fire_room.nbt index d33382dc..6bb45b68 100644 --- a/data/minecraft/structure/bastion/treasure/extensions/fire_room.nbt +++ b/data/minecraft/structure/bastion/treasure/extensions/fire_room.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8b495b254b23f2251e463433772ffe80c67f10a7b7e5f844c72fa8a7a1cddf24 -size 1866 +oid sha256:143a19429d93cb99625a4f0c431150a02930dab5799d251adbf5ccd5d597bb6f +size 1865 diff --git a/data/minecraft/structure/bastion/treasure/extensions/house_0.nbt b/data/minecraft/structure/bastion/treasure/extensions/house_0.nbt index 8443f5eb..fec6f294 100644 --- a/data/minecraft/structure/bastion/treasure/extensions/house_0.nbt +++ b/data/minecraft/structure/bastion/treasure/extensions/house_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6b88566fd619fc375cc3f50a0df643932b8a3508560deceeeabedd799848f561 +oid sha256:da4d8c8e69d1ae3805799dc53f07c0aab583c2f8ce471dd82161a9fcb645fa4e size 2076 diff --git a/data/minecraft/structure/bastion/treasure/extensions/house_1.nbt b/data/minecraft/structure/bastion/treasure/extensions/house_1.nbt index 0c43caf4..98ca40da 100644 --- a/data/minecraft/structure/bastion/treasure/extensions/house_1.nbt +++ b/data/minecraft/structure/bastion/treasure/extensions/house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6fa9902485a5d64a20494977083158d14d2de3ba91472164e66814ec9d791fe2 +oid sha256:c1c3e3891fb8667d291a58fa22d87cde37c3ec3fb2277fcbabe32dad49685f21 size 2158 diff --git a/data/minecraft/structure/bastion/treasure/extensions/large_bridge_0.nbt b/data/minecraft/structure/bastion/treasure/extensions/large_bridge_0.nbt index 20eef6eb..c2ff8fcd 100644 --- a/data/minecraft/structure/bastion/treasure/extensions/large_bridge_0.nbt +++ b/data/minecraft/structure/bastion/treasure/extensions/large_bridge_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:24847cc98d48c2fc2bea0bbc6e7b37d8e51940b0dd41762fdd5ea5d0f0a8ea25 -size 455 +oid sha256:e4b5e56d47305990ef4983f79bba924365db6b45b756a64a6161a17735f23740 +size 453 diff --git a/data/minecraft/structure/bastion/treasure/extensions/large_bridge_1.nbt b/data/minecraft/structure/bastion/treasure/extensions/large_bridge_1.nbt index 55768e38..56a812c9 100644 --- a/data/minecraft/structure/bastion/treasure/extensions/large_bridge_1.nbt +++ b/data/minecraft/structure/bastion/treasure/extensions/large_bridge_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6c2ced0f85b28583ebc843a1707e3aa8587f44d201b379739c00185918ebac51 -size 418 +oid sha256:4db18612fc9760abd3be0071bcb9767746312afd031d9dc443151a94a18ebd14 +size 417 diff --git a/data/minecraft/structure/bastion/treasure/extensions/large_bridge_2.nbt b/data/minecraft/structure/bastion/treasure/extensions/large_bridge_2.nbt index 622a488c..53c09059 100644 --- a/data/minecraft/structure/bastion/treasure/extensions/large_bridge_2.nbt +++ b/data/minecraft/structure/bastion/treasure/extensions/large_bridge_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b3ec013ec3b850b056b81ce1f0c011dbc7a255139bd389ae9b4ae1a9e76ca9cc -size 538 +oid sha256:fd46916f7aedcc4e51284c09639ed7c727679480a2523fc160f8db5a3d2ab728 +size 537 diff --git a/data/minecraft/structure/bastion/treasure/extensions/large_bridge_3.nbt b/data/minecraft/structure/bastion/treasure/extensions/large_bridge_3.nbt index a9e96ea4..caed2e61 100644 --- a/data/minecraft/structure/bastion/treasure/extensions/large_bridge_3.nbt +++ b/data/minecraft/structure/bastion/treasure/extensions/large_bridge_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2bd4bb069f9630821f002ddc0f055809abe1bb52bfebcd89481eae0ef3fd32bd -size 615 +oid sha256:671b2520a43c36343a30a361d37a2ae42981e865a8a8f19c896272ef0e4abd86 +size 614 diff --git a/data/minecraft/structure/bastion/treasure/extensions/roofed_bridge.nbt b/data/minecraft/structure/bastion/treasure/extensions/roofed_bridge.nbt index 933dd35e..e26c2313 100644 --- a/data/minecraft/structure/bastion/treasure/extensions/roofed_bridge.nbt +++ b/data/minecraft/structure/bastion/treasure/extensions/roofed_bridge.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7cdba4c698e2e7b42102ea6bf6e5f16e02d9800012d98e18db636eb302131b60 +oid sha256:cdb8a8db90f1d4ecac39f42000508497226724e3d209990949c1f296c5e14be3 size 641 diff --git a/data/minecraft/structure/bastion/treasure/extensions/small_bridge_0.nbt b/data/minecraft/structure/bastion/treasure/extensions/small_bridge_0.nbt index 4f6b0d86..0a1f3a9f 100644 --- a/data/minecraft/structure/bastion/treasure/extensions/small_bridge_0.nbt +++ b/data/minecraft/structure/bastion/treasure/extensions/small_bridge_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0f8ce7dedc639b9f9b0b8de53113c4960a88305415de179b19f2cbd3007f87e4 -size 320 +oid sha256:b8239da2fcec28121251402a01c2ed0358f6fe85127297c4fa8ff95f45a003e0 +size 319 diff --git a/data/minecraft/structure/bastion/treasure/extensions/small_bridge_1.nbt b/data/minecraft/structure/bastion/treasure/extensions/small_bridge_1.nbt index be2cc3c5..28dab1d5 100644 --- a/data/minecraft/structure/bastion/treasure/extensions/small_bridge_1.nbt +++ b/data/minecraft/structure/bastion/treasure/extensions/small_bridge_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a3b605320aae810240ae7ee8e0f470b80c859a0d177a40a45c67f1f262759a15 -size 390 +oid sha256:ceb049c78039fbe9b029bcdf6cfae57974418037a5bb71ee47ccecdfd2130eb1 +size 389 diff --git a/data/minecraft/structure/bastion/treasure/extensions/small_bridge_2.nbt b/data/minecraft/structure/bastion/treasure/extensions/small_bridge_2.nbt index a4774257..f3ce99ec 100644 --- a/data/minecraft/structure/bastion/treasure/extensions/small_bridge_2.nbt +++ b/data/minecraft/structure/bastion/treasure/extensions/small_bridge_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:310929d0c9ace48c9b9e88e86051a8b415d71861f8c9e7f1a39021ab08460344 +oid sha256:c7647dea98a79e8885db4d2911bd0edc1a047f659f36bccb82ce26516f1da5ea size 348 diff --git a/data/minecraft/structure/bastion/treasure/extensions/small_bridge_3.nbt b/data/minecraft/structure/bastion/treasure/extensions/small_bridge_3.nbt index d0eaddfc..73bae5ea 100644 --- a/data/minecraft/structure/bastion/treasure/extensions/small_bridge_3.nbt +++ b/data/minecraft/structure/bastion/treasure/extensions/small_bridge_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5123d15c0df2b5081b7d100bfdefb06f40213ce626191afa9b844e29d57957bd -size 479 +oid sha256:7f9b53ac521a28eef46e0258210ba20cc74c6f1b10752d8823b491e513cc7328 +size 478 diff --git a/data/minecraft/structure/bastion/treasure/ramparts/bottom_wall_0.nbt b/data/minecraft/structure/bastion/treasure/ramparts/bottom_wall_0.nbt index bd9e0cf9..48466327 100644 --- a/data/minecraft/structure/bastion/treasure/ramparts/bottom_wall_0.nbt +++ b/data/minecraft/structure/bastion/treasure/ramparts/bottom_wall_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0e151dbcdfc40a803a9d966e71bacaff99962e69850e6ec4101c093554f3a5a4 -size 11779 +oid sha256:507dcd45543bb57767ab01142d07f576c8add4181c39ffe3235c4933d69e6d00 +size 11778 diff --git a/data/minecraft/structure/bastion/treasure/ramparts/lava_basin_main.nbt b/data/minecraft/structure/bastion/treasure/ramparts/lava_basin_main.nbt index 8b874e52..5a04b288 100644 --- a/data/minecraft/structure/bastion/treasure/ramparts/lava_basin_main.nbt +++ b/data/minecraft/structure/bastion/treasure/ramparts/lava_basin_main.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d906ca168d4949d3ec57ed33e76b4a86b98f59f9bbdfec84354fb9b20a44cb0c -size 24168 +oid sha256:01d3772b7eb02dcae94c41debedbe329f214482e25edcdb2608c94285d94d52d +size 24167 diff --git a/data/minecraft/structure/bastion/treasure/ramparts/lava_basin_side.nbt b/data/minecraft/structure/bastion/treasure/ramparts/lava_basin_side.nbt index f04c3316..a91bcfcb 100644 --- a/data/minecraft/structure/bastion/treasure/ramparts/lava_basin_side.nbt +++ b/data/minecraft/structure/bastion/treasure/ramparts/lava_basin_side.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:046861b68885eb5a533813e5e0c8b09ed5a880d70339153116b5113b2eb07d0e -size 23969 +oid sha256:eee9aecb29558d0a70a2129f519ed1849b22e39d60e40225f2d5fc1f582cf5f2 +size 23967 diff --git a/data/minecraft/structure/bastion/treasure/ramparts/mid_wall_main.nbt b/data/minecraft/structure/bastion/treasure/ramparts/mid_wall_main.nbt index 35d1ca25..9f1b9d47 100644 --- a/data/minecraft/structure/bastion/treasure/ramparts/mid_wall_main.nbt +++ b/data/minecraft/structure/bastion/treasure/ramparts/mid_wall_main.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:33db991ac4fe4be80ea13d7e283f9d495c4d35eab76ba7cfde680b59ef8146d2 -size 18998 +oid sha256:9d7baa64277ab7e1d4a2d79f64f90199db39ae1bbca1216e530c5a9b838e46e4 +size 18997 diff --git a/data/minecraft/structure/bastion/treasure/ramparts/mid_wall_side.nbt b/data/minecraft/structure/bastion/treasure/ramparts/mid_wall_side.nbt index 8b2f3348..5466c47a 100644 --- a/data/minecraft/structure/bastion/treasure/ramparts/mid_wall_side.nbt +++ b/data/minecraft/structure/bastion/treasure/ramparts/mid_wall_side.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d61c2ee1a2e1ba35ce51d2facc1f27989f796c4bf2b73e8aed058a5efcc37868 -size 18146 +oid sha256:49f9dca4e7aab2a9466be9d53120c1016234b736667c28a81cba4697e9b61202 +size 18145 diff --git a/data/minecraft/structure/bastion/treasure/ramparts/top_wall.nbt b/data/minecraft/structure/bastion/treasure/ramparts/top_wall.nbt index ef9a7abc..99d88674 100644 --- a/data/minecraft/structure/bastion/treasure/ramparts/top_wall.nbt +++ b/data/minecraft/structure/bastion/treasure/ramparts/top_wall.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cb375c900a3d1f02f0f98ca6ed3c0e228fbe9e93c5dda06bdce3d11ed804a532 -size 9860 +oid sha256:bcf51d06eec37c79f1f77285f22f796296ca8032908bfb4155604cca3350e21a +size 9859 diff --git a/data/minecraft/structure/bastion/treasure/roofs/center_roof.nbt b/data/minecraft/structure/bastion/treasure/roofs/center_roof.nbt index 5fe9bf06..a768d787 100644 --- a/data/minecraft/structure/bastion/treasure/roofs/center_roof.nbt +++ b/data/minecraft/structure/bastion/treasure/roofs/center_roof.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ff2473ee384f5d5fab127a81e41d3c358ba3e5f1473653c18a59dab98e47f2ea +oid sha256:70442f8e4bbb38f59775c9c8ef96d7fbf62813d1e681e335fd0d61dc23e02c34 size 3445 diff --git a/data/minecraft/structure/bastion/treasure/roofs/corner_roof.nbt b/data/minecraft/structure/bastion/treasure/roofs/corner_roof.nbt index edaa8afd..89fae4eb 100644 --- a/data/minecraft/structure/bastion/treasure/roofs/corner_roof.nbt +++ b/data/minecraft/structure/bastion/treasure/roofs/corner_roof.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3ba00f17b65a75a2c6f241e5ab60b5bcb6b997ff074ebb36da598a137a8340a5 -size 425 +oid sha256:d708ce71265739a47742c2a4cc3288f05bf514cebeb6b0b9e6201c1258c2050d +size 424 diff --git a/data/minecraft/structure/bastion/treasure/roofs/wall_roof.nbt b/data/minecraft/structure/bastion/treasure/roofs/wall_roof.nbt index 2531a207..075f1440 100644 --- a/data/minecraft/structure/bastion/treasure/roofs/wall_roof.nbt +++ b/data/minecraft/structure/bastion/treasure/roofs/wall_roof.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eb4680dc8459c6022ef6468eccc501dae17d110a2398787f3a3c85c02103d40b -size 991 +oid sha256:7d705e5396a211664b4f8c3920b02af2c4bfb2dff5186ed7ce7149efbfe5614c +size 990 diff --git a/data/minecraft/structure/bastion/treasure/stairs/lower_stairs.nbt b/data/minecraft/structure/bastion/treasure/stairs/lower_stairs.nbt index 024fc856..311afbd2 100644 --- a/data/minecraft/structure/bastion/treasure/stairs/lower_stairs.nbt +++ b/data/minecraft/structure/bastion/treasure/stairs/lower_stairs.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7514a8506206e33690f33e7bcd13a96c979e6b68f2760e75a888fa9a3ab9d993 -size 446 +oid sha256:d0c4adf5924bf04694a8ca437f78439867f29b8803c94beb47aed434dfcb62fb +size 445 diff --git a/data/minecraft/structure/bastion/treasure/walls/bottom/wall_0.nbt b/data/minecraft/structure/bastion/treasure/walls/bottom/wall_0.nbt index c941b6db..0411d885 100644 --- a/data/minecraft/structure/bastion/treasure/walls/bottom/wall_0.nbt +++ b/data/minecraft/structure/bastion/treasure/walls/bottom/wall_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4dde0cbe9ba2a11c23cc0ea63e8c994f68742a200d6730179ea39e0b39f2d745 -size 6611 +oid sha256:0bd6f1da62326c3a9e16a9b3dd1d089dfce95f0ea11eeb1e48eb55a3326e0271 +size 6610 diff --git a/data/minecraft/structure/bastion/treasure/walls/bottom/wall_1.nbt b/data/minecraft/structure/bastion/treasure/walls/bottom/wall_1.nbt index 86a58a38..5fc291bc 100644 --- a/data/minecraft/structure/bastion/treasure/walls/bottom/wall_1.nbt +++ b/data/minecraft/structure/bastion/treasure/walls/bottom/wall_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:561d857965acd0ce395aba8a123edcad3cec2688c587974ada76fd63c72f7b00 -size 6499 +oid sha256:039eaa2e5a80a1d41e9edad8c407473822d93d0edeeefad6ac21a13e78a77d7b +size 6498 diff --git a/data/minecraft/structure/bastion/treasure/walls/bottom/wall_2.nbt b/data/minecraft/structure/bastion/treasure/walls/bottom/wall_2.nbt index dc0748b3..30f6d0ae 100644 --- a/data/minecraft/structure/bastion/treasure/walls/bottom/wall_2.nbt +++ b/data/minecraft/structure/bastion/treasure/walls/bottom/wall_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b8a75b42e8e37e5e35d2ac6e7c73e353e58bc675c5605863ed707ce1bc5dfa73 -size 6442 +oid sha256:c8bcda0ffdaf724f231295070b649e78144a91f9b410004194a962f18db41bb6 +size 6441 diff --git a/data/minecraft/structure/bastion/treasure/walls/bottom/wall_3.nbt b/data/minecraft/structure/bastion/treasure/walls/bottom/wall_3.nbt index d6997d8a..9bea555a 100644 --- a/data/minecraft/structure/bastion/treasure/walls/bottom/wall_3.nbt +++ b/data/minecraft/structure/bastion/treasure/walls/bottom/wall_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1177079082c08cec9f70750bd8de344f2ee14e2bbeb1e09243ecb587e3482098 -size 6489 +oid sha256:d4286cdf06d82cf15c5b326aef85d7c9ef3af48addf8eb853c816af96873ddf2 +size 6488 diff --git a/data/minecraft/structure/bastion/treasure/walls/entrance_wall.nbt b/data/minecraft/structure/bastion/treasure/walls/entrance_wall.nbt index fd625059..f4e26006 100644 --- a/data/minecraft/structure/bastion/treasure/walls/entrance_wall.nbt +++ b/data/minecraft/structure/bastion/treasure/walls/entrance_wall.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dd4ddb56cb5c6a7f7648c6bd9f75666f83ea67b288b728c8a3343d5c4709a174 -size 2678 +oid sha256:a096a381c302ed217d28a7ca7cd2c7ea480dc191ec25635c9c77fc24d4d46f59 +size 2677 diff --git a/data/minecraft/structure/bastion/treasure/walls/lava_wall.nbt b/data/minecraft/structure/bastion/treasure/walls/lava_wall.nbt index b1d0fbae..27cc5562 100644 --- a/data/minecraft/structure/bastion/treasure/walls/lava_wall.nbt +++ b/data/minecraft/structure/bastion/treasure/walls/lava_wall.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e92ef37140437c6f01b9b7c2417a3bc30fafe871d8b494255b8b6fe1ac464659 -size 2798 +oid sha256:849104a5031ba5f164eae0042a6a23cee02375b0faad59b3293701fc64fc9fb7 +size 2797 diff --git a/data/minecraft/structure/bastion/treasure/walls/mid/wall_0.nbt b/data/minecraft/structure/bastion/treasure/walls/mid/wall_0.nbt index dc2c28af..91615ac1 100644 --- a/data/minecraft/structure/bastion/treasure/walls/mid/wall_0.nbt +++ b/data/minecraft/structure/bastion/treasure/walls/mid/wall_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8a74ee004b15e7b51873801205f3b4029d6994eecb40ea299e41bdd6e76e467d -size 6296 +oid sha256:ac88a3f77c51c8c18e62a6adb83b006fac47bd80d984e407cd60dad598ff4b9b +size 6295 diff --git a/data/minecraft/structure/bastion/treasure/walls/mid/wall_1.nbt b/data/minecraft/structure/bastion/treasure/walls/mid/wall_1.nbt index cf0448bd..3eb1a7cb 100644 --- a/data/minecraft/structure/bastion/treasure/walls/mid/wall_1.nbt +++ b/data/minecraft/structure/bastion/treasure/walls/mid/wall_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:916b78bdc0f68dd8303528620feeebd9cd494d269dc4ac9e5347d69ca0371f42 -size 6152 +oid sha256:aa9a71d762be8b0e62022d4ed6595ed4f2d0522b4ad86874f995818866e64a95 +size 6151 diff --git a/data/minecraft/structure/bastion/treasure/walls/mid/wall_2.nbt b/data/minecraft/structure/bastion/treasure/walls/mid/wall_2.nbt index edd983f1..00c0866d 100644 --- a/data/minecraft/structure/bastion/treasure/walls/mid/wall_2.nbt +++ b/data/minecraft/structure/bastion/treasure/walls/mid/wall_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c73968770fe40bf6b1bb1f68035b9cb5b315a9d9d4f680aee9c4b0249ff446e7 -size 6174 +oid sha256:0ed66406f97d805bfee9816d81ba43acada6f37c4ca022eb541aee345aebae31 +size 6173 diff --git a/data/minecraft/structure/bastion/treasure/walls/outer/bottom_corner.nbt b/data/minecraft/structure/bastion/treasure/walls/outer/bottom_corner.nbt index db50679a..b49896b3 100644 --- a/data/minecraft/structure/bastion/treasure/walls/outer/bottom_corner.nbt +++ b/data/minecraft/structure/bastion/treasure/walls/outer/bottom_corner.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ef05f5476993ba92e8aac3c4500be13f9c23f11e36b3755bcc445644703c6f95 -size 781 +oid sha256:f2907ebd86c16d7a1e3cc49fc25084a16f0643e5ce986628dcdbc3cc0a975839 +size 780 diff --git a/data/minecraft/structure/bastion/treasure/walls/outer/medium_outer_wall.nbt b/data/minecraft/structure/bastion/treasure/walls/outer/medium_outer_wall.nbt index aaf0f924..909c53ae 100644 --- a/data/minecraft/structure/bastion/treasure/walls/outer/medium_outer_wall.nbt +++ b/data/minecraft/structure/bastion/treasure/walls/outer/medium_outer_wall.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:672cf8777d4a55916f1050a54a29c1369c26bdaed0eff25be7dfa0c201f0eeba +oid sha256:f40127b4c423cc84e397564253215f8b0c1a9f4a1cf0fb7d9a4faf701bd41b9c size 2332 diff --git a/data/minecraft/structure/bastion/treasure/walls/outer/mid_corner.nbt b/data/minecraft/structure/bastion/treasure/walls/outer/mid_corner.nbt index dce7efcd..077dabcb 100644 --- a/data/minecraft/structure/bastion/treasure/walls/outer/mid_corner.nbt +++ b/data/minecraft/structure/bastion/treasure/walls/outer/mid_corner.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:709cc3753aa86a161ad0b0f3a238edf86793337fdd3f4ae72881e5cb26d88600 -size 714 +oid sha256:76b7112935c968605a7da7cc087e6c6edc3f3f5b579f517fd1689ae94a13a876 +size 713 diff --git a/data/minecraft/structure/bastion/treasure/walls/outer/outer_wall.nbt b/data/minecraft/structure/bastion/treasure/walls/outer/outer_wall.nbt index 94196994..65598533 100644 --- a/data/minecraft/structure/bastion/treasure/walls/outer/outer_wall.nbt +++ b/data/minecraft/structure/bastion/treasure/walls/outer/outer_wall.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:27aaab62800df1354de8aaa64455dd201bdee19a38427369c4796744851dc545 -size 2205 +oid sha256:5c6fbbfdf05332426bf6e13901f53c673c3ca6e12754fdc34f33f4c92067790c +size 2204 diff --git a/data/minecraft/structure/bastion/treasure/walls/outer/tall_outer_wall.nbt b/data/minecraft/structure/bastion/treasure/walls/outer/tall_outer_wall.nbt index d5d1767a..3f0af569 100644 --- a/data/minecraft/structure/bastion/treasure/walls/outer/tall_outer_wall.nbt +++ b/data/minecraft/structure/bastion/treasure/walls/outer/tall_outer_wall.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fbfbc63812032f8b8dbb0bc34f92abdb9ea763567b26b5d4b57e8a82d80a0773 -size 2453 +oid sha256:41efe3cc4fba76dbfaae422eb442fd4a1d37404d4efb9da03e691cceb53f52ae +size 2448 diff --git a/data/minecraft/structure/bastion/treasure/walls/outer/top_corner.nbt b/data/minecraft/structure/bastion/treasure/walls/outer/top_corner.nbt index e83f2de0..b0103b2d 100644 --- a/data/minecraft/structure/bastion/treasure/walls/outer/top_corner.nbt +++ b/data/minecraft/structure/bastion/treasure/walls/outer/top_corner.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e411a3389068c06e55ab37802631cb1e60032391828c0816e150a24403b40d33 -size 805 +oid sha256:cd37f7f9c333cfaf3ccfdd9cb5fd506fe80f1f2e6661b7400fecd6ed6e13423f +size 804 diff --git a/data/minecraft/structure/bastion/treasure/walls/top/main_entrance.nbt b/data/minecraft/structure/bastion/treasure/walls/top/main_entrance.nbt index a5b88160..7dfaf1af 100644 --- a/data/minecraft/structure/bastion/treasure/walls/top/main_entrance.nbt +++ b/data/minecraft/structure/bastion/treasure/walls/top/main_entrance.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:018784239222594bcbc71d005214cd086ee10faeefd46ca7982f0f6090a20ab1 -size 6219 +oid sha256:3428618c75f4896d9b1822a5d578640dd8606f2c56b39cfd395db1bf43c7bdd5 +size 6218 diff --git a/data/minecraft/structure/bastion/treasure/walls/top/wall_0.nbt b/data/minecraft/structure/bastion/treasure/walls/top/wall_0.nbt index 490325b8..5ffbedf1 100644 --- a/data/minecraft/structure/bastion/treasure/walls/top/wall_0.nbt +++ b/data/minecraft/structure/bastion/treasure/walls/top/wall_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:66a5b41e0b3b65d8fc37ccea373be3e7113753e3b3f0a721f9250415760c466d -size 6225 +oid sha256:2648a358f9ee9f479e06701209ea5f20783da09728c1b70a6efb2379f788460b +size 6224 diff --git a/data/minecraft/structure/bastion/treasure/walls/top/wall_1.nbt b/data/minecraft/structure/bastion/treasure/walls/top/wall_1.nbt index dbfb2ec4..d28e8d10 100644 --- a/data/minecraft/structure/bastion/treasure/walls/top/wall_1.nbt +++ b/data/minecraft/structure/bastion/treasure/walls/top/wall_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0df602b735bf4123020676a72335d5de93f8a6170fe6d0ab06afb5126435930e -size 6217 +oid sha256:59b40d20344150b3919d455cd473bf9f04291d7c6bd40129ac44181cbd027a00 +size 6216 diff --git a/data/minecraft/structure/bastion/units/air_base.nbt b/data/minecraft/structure/bastion/units/air_base.nbt index c5806360..26a4490b 100644 --- a/data/minecraft/structure/bastion/units/air_base.nbt +++ b/data/minecraft/structure/bastion/units/air_base.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5c1b4cb31b191e6405719090884da6d885273c8f6280e726197e64a59786a220 -size 63630 +oid sha256:b476ba2b9fac31381423ebc82c03b783fbee22615041673a9c827fbbf7fc83da +size 63632 diff --git a/data/minecraft/structure/bastion/units/center_pieces/center_0.nbt b/data/minecraft/structure/bastion/units/center_pieces/center_0.nbt index 4f7f47ae..9a8c924a 100644 --- a/data/minecraft/structure/bastion/units/center_pieces/center_0.nbt +++ b/data/minecraft/structure/bastion/units/center_pieces/center_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fb3c4886d6a0407cfbd1db79ec87c86d9c57190347c744e3e9c3000aec1ab18a -size 3082 +oid sha256:2b5fb7bb2a273bf8352bb840d3caa3113b8a9126a9b78786d78a885dbe0ed2e5 +size 3081 diff --git a/data/minecraft/structure/bastion/units/center_pieces/center_1.nbt b/data/minecraft/structure/bastion/units/center_pieces/center_1.nbt index cfa58c26..2f1a6e24 100644 --- a/data/minecraft/structure/bastion/units/center_pieces/center_1.nbt +++ b/data/minecraft/structure/bastion/units/center_pieces/center_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d342e77b804a436ad746243b2e8be54c78494444eb06b9528bd9909bd637ad29 -size 3292 +oid sha256:266ea4fc537c7b613f2abaacb215a56cbd252f8dc53aed333f529029ef70476d +size 3291 diff --git a/data/minecraft/structure/bastion/units/center_pieces/center_2.nbt b/data/minecraft/structure/bastion/units/center_pieces/center_2.nbt index b2fc3619..a0eb7c20 100644 --- a/data/minecraft/structure/bastion/units/center_pieces/center_2.nbt +++ b/data/minecraft/structure/bastion/units/center_pieces/center_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:37befb6a2a47779fe205514f33832b692d83bc41abc836dc1b1dbba5b192528f -size 3358 +oid sha256:c871b63cd46bee6bb2e69d04de43380a868f8b1a0b37c1bba28fe148dcaedbb3 +size 3357 diff --git a/data/minecraft/structure/bastion/units/edges/edge_0.nbt b/data/minecraft/structure/bastion/units/edges/edge_0.nbt index 14596224..da5e93d4 100644 --- a/data/minecraft/structure/bastion/units/edges/edge_0.nbt +++ b/data/minecraft/structure/bastion/units/edges/edge_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:69aa082d8591c2e4fdc5c25955f84236c8e734d6bd40833fe3ddcb9d36c81c26 +oid sha256:0c06ba5e57c92d8a7bbdd902b8086e1d42146f3d7bb74f4c5bbe7cf0e5936288 size 2381 diff --git a/data/minecraft/structure/bastion/units/fillers/stage_0.nbt b/data/minecraft/structure/bastion/units/fillers/stage_0.nbt index 79921432..986ef5dd 100644 --- a/data/minecraft/structure/bastion/units/fillers/stage_0.nbt +++ b/data/minecraft/structure/bastion/units/fillers/stage_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c2aaf1aa403ca459af78f35f08eb3573fbe7b841836e3f64d885330cdd41e729 -size 2453 +oid sha256:31599846524737d767d6ce43883b9e64bc8e50f67914a6e9391e19064275a2a9 +size 2452 diff --git a/data/minecraft/structure/bastion/units/pathways/pathway_0.nbt b/data/minecraft/structure/bastion/units/pathways/pathway_0.nbt index 3b74d89e..77c4e461 100644 --- a/data/minecraft/structure/bastion/units/pathways/pathway_0.nbt +++ b/data/minecraft/structure/bastion/units/pathways/pathway_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5e952c7e22d9412c09f024783fcadb95b159aa70f005fffb6a1c3148b0326437 +oid sha256:84640f4ea5166efcf41469dbcabea99dd06ec97d8cc7e0177752fd05cdfad43b size 354 diff --git a/data/minecraft/structure/bastion/units/pathways/pathway_wall_0.nbt b/data/minecraft/structure/bastion/units/pathways/pathway_wall_0.nbt index 4c83902c..abc10620 100644 --- a/data/minecraft/structure/bastion/units/pathways/pathway_wall_0.nbt +++ b/data/minecraft/structure/bastion/units/pathways/pathway_wall_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3bb27dfbab0b6688984ea6f97152487c7adb1aacec0d06a513a80ac506f9cec4 -size 354 +oid sha256:ccdb6c68f2aa05aceef60fdec9c6fa163e922429694a8acebb59bd16ed00f203 +size 353 diff --git a/data/minecraft/structure/bastion/units/rampart_plates/plate_0.nbt b/data/minecraft/structure/bastion/units/rampart_plates/plate_0.nbt index dad6e93f..7cae0769 100644 --- a/data/minecraft/structure/bastion/units/rampart_plates/plate_0.nbt +++ b/data/minecraft/structure/bastion/units/rampart_plates/plate_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f19178c80a4108e2d5e2ab535691dddb2d22871bb436aad2d2ce691e579beac4 -size 3656 +oid sha256:b44aebbe92271afc0f7ac1cb0c9086a8b6845900f0751b0e916dd35b628f9c07 +size 3655 diff --git a/data/minecraft/structure/bastion/units/ramparts/ramparts_0.nbt b/data/minecraft/structure/bastion/units/ramparts/ramparts_0.nbt index 63001b27..671b182c 100644 --- a/data/minecraft/structure/bastion/units/ramparts/ramparts_0.nbt +++ b/data/minecraft/structure/bastion/units/ramparts/ramparts_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:622baeea42d15871b8ea8e0f156614ab5dc4805af5fa56e6d69c5ff568680cf3 +oid sha256:4b34e67273aab5e145dd1d7b352cda8ea3aedea235c15b0a3f6c2ad0e874c221 size 23659 diff --git a/data/minecraft/structure/bastion/units/ramparts/ramparts_1.nbt b/data/minecraft/structure/bastion/units/ramparts/ramparts_1.nbt index dbc910dd..9d8a4f6c 100644 --- a/data/minecraft/structure/bastion/units/ramparts/ramparts_1.nbt +++ b/data/minecraft/structure/bastion/units/ramparts/ramparts_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e1769ba41a4a46adcb9bed79abf1ead421958a97de37adbd1b3287bcbfc1d38b -size 11770 +oid sha256:85534ef9c8f75de2975e9475432666c7f7f58f25ed98ce01227e99f753654b97 +size 11769 diff --git a/data/minecraft/structure/bastion/units/ramparts/ramparts_2.nbt b/data/minecraft/structure/bastion/units/ramparts/ramparts_2.nbt index d6b7fb7f..ab114dd6 100644 --- a/data/minecraft/structure/bastion/units/ramparts/ramparts_2.nbt +++ b/data/minecraft/structure/bastion/units/ramparts/ramparts_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:110aa7bc3cca4f81c45618ffba63ed7fb457ba0c093f14671c1812cf0ffb74de +oid sha256:18ca774bfeb39ad21d532978e3594840cec4541b0513b753dd9adab87ff020b5 size 6940 diff --git a/data/minecraft/structure/bastion/units/stages/rot/stage_1_0.nbt b/data/minecraft/structure/bastion/units/stages/rot/stage_1_0.nbt index f42c8a6d..2b861ae4 100644 --- a/data/minecraft/structure/bastion/units/stages/rot/stage_1_0.nbt +++ b/data/minecraft/structure/bastion/units/stages/rot/stage_1_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6c9c6422e5735c914ecc6043ac70c8ac05080d9c88cf60c82c0426c9ab930bd4 -size 2400 +oid sha256:42d17a22634a0106301270b92ba397ec3ce34e595ee869e8a9c7894ec1ae3b1d +size 2399 diff --git a/data/minecraft/structure/bastion/units/stages/stage_0_0.nbt b/data/minecraft/structure/bastion/units/stages/stage_0_0.nbt index 204dab1a..c0bff979 100644 --- a/data/minecraft/structure/bastion/units/stages/stage_0_0.nbt +++ b/data/minecraft/structure/bastion/units/stages/stage_0_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:32b05b85a25d4710f951f8eaf5359c9e7be58da9664f6e8bc63699742fc43253 -size 2548 +oid sha256:3d3d0305c974a1d8b58f181da1e54bad05ba676642fdb63fbc253de1ad1732be +size 2547 diff --git a/data/minecraft/structure/bastion/units/stages/stage_0_1.nbt b/data/minecraft/structure/bastion/units/stages/stage_0_1.nbt index e6c60183..7cfb88da 100644 --- a/data/minecraft/structure/bastion/units/stages/stage_0_1.nbt +++ b/data/minecraft/structure/bastion/units/stages/stage_0_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:85c2eb136e78e9cc8507cb52ecaedb8933074e5859a28f75c4f56b03ff709f6f -size 2612 +oid sha256:38367cca6362d4c103f380cc11b8828e7fe8d6f8309a2960a6ab1556c598adf1 +size 2611 diff --git a/data/minecraft/structure/bastion/units/stages/stage_0_2.nbt b/data/minecraft/structure/bastion/units/stages/stage_0_2.nbt index aee44a49..00e367be 100644 --- a/data/minecraft/structure/bastion/units/stages/stage_0_2.nbt +++ b/data/minecraft/structure/bastion/units/stages/stage_0_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:90fbacc3e1add7317e2dc52e716261641946f1ce66ae0a73f71b75d7ec6bcff2 -size 2703 +oid sha256:68be74d20802d8618f428f144d62effa97a2bfbb0672e02a014468f99a75ee24 +size 2702 diff --git a/data/minecraft/structure/bastion/units/stages/stage_0_3.nbt b/data/minecraft/structure/bastion/units/stages/stage_0_3.nbt index 7957e41b..4052ca7d 100644 --- a/data/minecraft/structure/bastion/units/stages/stage_0_3.nbt +++ b/data/minecraft/structure/bastion/units/stages/stage_0_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:03941289efb32b6f068ea168af6d5acc0fd2fe00c7ba81492d1747f00ca89bae -size 2506 +oid sha256:366f7effe66ce33c1fe68f751583796a67effde8562fe4e06bf1524c2e7f5b95 +size 2505 diff --git a/data/minecraft/structure/bastion/units/stages/stage_1_0.nbt b/data/minecraft/structure/bastion/units/stages/stage_1_0.nbt index c6ecb9d4..88407fb7 100644 --- a/data/minecraft/structure/bastion/units/stages/stage_1_0.nbt +++ b/data/minecraft/structure/bastion/units/stages/stage_1_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c9227767fadb2d80ff430f50be43f2ddfab3f7948744947e9b8fc8dad623cc80 -size 2442 +oid sha256:dbd650fafa03a470a1ca83ff395c8cd64347758c4307268e9a6ad3a45f804f13 +size 2440 diff --git a/data/minecraft/structure/bastion/units/stages/stage_1_1.nbt b/data/minecraft/structure/bastion/units/stages/stage_1_1.nbt index ec14b74d..b0b9016c 100644 --- a/data/minecraft/structure/bastion/units/stages/stage_1_1.nbt +++ b/data/minecraft/structure/bastion/units/stages/stage_1_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b211580ec9ccc9dd296007f808a4b80a26400c307d66e07ce360679339080cc4 -size 2421 +oid sha256:d6d137d54820299b65d3f339f1829a981a85504dbb672cc2b69c11db658efb2c +size 2419 diff --git a/data/minecraft/structure/bastion/units/stages/stage_1_2.nbt b/data/minecraft/structure/bastion/units/stages/stage_1_2.nbt index 5ddddd90..5e1e37ee 100644 --- a/data/minecraft/structure/bastion/units/stages/stage_1_2.nbt +++ b/data/minecraft/structure/bastion/units/stages/stage_1_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:039b6819af1e70854894937e1e529788c269a9a1bbe5439c047cb290cec04c40 -size 2509 +oid sha256:d2d0cc7aede83d798e16a2494fa4ca03ff8f770a28202851b19f8ee206d15880 +size 2508 diff --git a/data/minecraft/structure/bastion/units/stages/stage_1_3.nbt b/data/minecraft/structure/bastion/units/stages/stage_1_3.nbt index f4188cb3..e1903e1f 100644 --- a/data/minecraft/structure/bastion/units/stages/stage_1_3.nbt +++ b/data/minecraft/structure/bastion/units/stages/stage_1_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f8ad1561f0d8d9744258c4af0fd3d00681cdc0183ab5f23eba8dfcf9c375933b -size 2486 +oid sha256:7acc152a74ab4ad3ed0438d833ad5a4fd1ef3dcdf2b44ec08b8c210aed78c738 +size 2485 diff --git a/data/minecraft/structure/bastion/units/stages/stage_2_0.nbt b/data/minecraft/structure/bastion/units/stages/stage_2_0.nbt index d5906da4..bec05402 100644 --- a/data/minecraft/structure/bastion/units/stages/stage_2_0.nbt +++ b/data/minecraft/structure/bastion/units/stages/stage_2_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5e237d212ba2c3b16fa647b326da70e77ba940ec9b160244e85a4a226e63618c -size 2423 +oid sha256:ad91e3f0ea933fd99efe4d23a0773bbbe42b2336b424ac970ca0ed096895a0aa +size 2422 diff --git a/data/minecraft/structure/bastion/units/stages/stage_2_1.nbt b/data/minecraft/structure/bastion/units/stages/stage_2_1.nbt index b348223e..580e16ca 100644 --- a/data/minecraft/structure/bastion/units/stages/stage_2_1.nbt +++ b/data/minecraft/structure/bastion/units/stages/stage_2_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c69e7a2421a42c551fe8c933edf7e409e9df38315c248004762da760ec06c3a3 -size 2460 +oid sha256:6b0dc8a55afa03ff13c52039088f29af9f18488301e52fb0af3ea3838e2dbf8a +size 2459 diff --git a/data/minecraft/structure/bastion/units/stages/stage_3_0.nbt b/data/minecraft/structure/bastion/units/stages/stage_3_0.nbt index 4a25943a..02585f4b 100644 --- a/data/minecraft/structure/bastion/units/stages/stage_3_0.nbt +++ b/data/minecraft/structure/bastion/units/stages/stage_3_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:39db5c41fd6f57613001fe77b3195b510db7968b4ddbbf0d5512346a976ce524 +oid sha256:2a53ca0871d243cb1ebd848102abc1b0b5f7ef6baecda4503910beb432a0aab6 size 631 diff --git a/data/minecraft/structure/bastion/units/stages/stage_3_1.nbt b/data/minecraft/structure/bastion/units/stages/stage_3_1.nbt index e74c35d0..70f2b2a2 100644 --- a/data/minecraft/structure/bastion/units/stages/stage_3_1.nbt +++ b/data/minecraft/structure/bastion/units/stages/stage_3_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:da408698d218e3dae0c475182ed2e55c9ff6fa616ace56241c2c13245d46f9cf -size 689 +oid sha256:fc5e221c072306c791964d0efa0dde82d9a25f83a3ae166b9bd0c9036041298f +size 688 diff --git a/data/minecraft/structure/bastion/units/stages/stage_3_2.nbt b/data/minecraft/structure/bastion/units/stages/stage_3_2.nbt index 9436453e..8655248c 100644 --- a/data/minecraft/structure/bastion/units/stages/stage_3_2.nbt +++ b/data/minecraft/structure/bastion/units/stages/stage_3_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4f4701b6702bbff157f48832d3935839422871d44155623327c401179357a4c1 -size 628 +oid sha256:ca53df293599e0295aaa1f7a067df1033e8aaa24cb8a9b350cab40e246c31054 +size 627 diff --git a/data/minecraft/structure/bastion/units/stages/stage_3_3.nbt b/data/minecraft/structure/bastion/units/stages/stage_3_3.nbt index 598eb26d..93f463ce 100644 --- a/data/minecraft/structure/bastion/units/stages/stage_3_3.nbt +++ b/data/minecraft/structure/bastion/units/stages/stage_3_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c761605a1f841614ae5d10727eab2edf2a50e71e80c27973efa4a0e408ce0c81 +oid sha256:be4f731afaab8ce85f59d8e9f8aff61cd027125704a26c09d14b26a87c335adb size 654 diff --git a/data/minecraft/structure/bastion/units/wall_units/edge_0_large.nbt b/data/minecraft/structure/bastion/units/wall_units/edge_0_large.nbt index 2d361e0f..f7ba49e0 100644 --- a/data/minecraft/structure/bastion/units/wall_units/edge_0_large.nbt +++ b/data/minecraft/structure/bastion/units/wall_units/edge_0_large.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a67ba3254ff8d4da1b1bae60337d5c24f43c8d17fc00844cd04dc9b227dfd914 -size 2821 +oid sha256:5014a8fb92682e729e66a616c35979c5db6b021c4fc17b0f12624708c0d85cb1 +size 2820 diff --git a/data/minecraft/structure/bastion/units/wall_units/unit_0.nbt b/data/minecraft/structure/bastion/units/wall_units/unit_0.nbt index 03adddd2..bfdca913 100644 --- a/data/minecraft/structure/bastion/units/wall_units/unit_0.nbt +++ b/data/minecraft/structure/bastion/units/wall_units/unit_0.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:740bac7eed6da19f3b1d46e7c7d71967789cb46a862d3b3afbefe08324e1ec9e -size 2499 +oid sha256:154e71b579d51fecdcd896e08bdc818cd9828e8ad28efda0411c8726c8573f84 +size 2498 diff --git a/data/minecraft/structure/bastion/units/walls/connected_wall.nbt b/data/minecraft/structure/bastion/units/walls/connected_wall.nbt index a94992a8..b96896cf 100644 --- a/data/minecraft/structure/bastion/units/walls/connected_wall.nbt +++ b/data/minecraft/structure/bastion/units/walls/connected_wall.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:19147b51ed33c6daa9feeeed9ea68ba53875b97746560aa6c65928ce4d34a155 -size 15616 +oid sha256:ba619aa708ce2a118c5da59bdc1b534b05854f0d89900a45b94da02fa8e207eb +size 15615 diff --git a/data/minecraft/structure/bastion/units/walls/wall_base.nbt b/data/minecraft/structure/bastion/units/walls/wall_base.nbt index e3c0e3bb..9f354435 100644 --- a/data/minecraft/structure/bastion/units/walls/wall_base.nbt +++ b/data/minecraft/structure/bastion/units/walls/wall_base.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:938240b7921e9b42d50414d578d143e9bbc8973f80703b97ca29c84aa87e6021 -size 16903 +oid sha256:ea112e6248ee84b3aa2189c730255906f9e1d8f1d78e6b665045849efceb904c +size 16902 diff --git a/data/minecraft/structure/empty.nbt b/data/minecraft/structure/empty.nbt index 5962c5a9..9b3db2e1 100644 --- a/data/minecraft/structure/empty.nbt +++ b/data/minecraft/structure/empty.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b06d880a47f68ac104d2fcb1f0bf3e4ca64172becb8c07a557c9b16cacb23574 -size 124 +oid sha256:4de398e4be637084c81d14f40cce29798f38a3e03335d6e247bb30b8c87312dd +size 123 diff --git a/data/minecraft/structure/end_city/base_floor.nbt b/data/minecraft/structure/end_city/base_floor.nbt index 2e98a0e3..a1801f50 100644 --- a/data/minecraft/structure/end_city/base_floor.nbt +++ b/data/minecraft/structure/end_city/base_floor.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0ed07d917157ce5299094368379c74316026ce2e5a514a7e8124f744d6d9d76a +oid sha256:66b3ce68164a0c19c7b873f3a8aeb9c2a81607085370dc8a16a91b619d3ac262 size 1685 diff --git a/data/minecraft/structure/end_city/base_roof.nbt b/data/minecraft/structure/end_city/base_roof.nbt index cd48ad36..871f515c 100644 --- a/data/minecraft/structure/end_city/base_roof.nbt +++ b/data/minecraft/structure/end_city/base_roof.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7eb340fcd63a8409f495ab95d7454f64e029cd8f3c107ebbb5936dc2606a5e20 -size 1179 +oid sha256:5ca38b90fb0c12423e214770993e010ca97614b186dbdabcd5a2334945cec69e +size 1178 diff --git a/data/minecraft/structure/end_city/bridge_end.nbt b/data/minecraft/structure/end_city/bridge_end.nbt index f6fd0f42..8023e892 100644 --- a/data/minecraft/structure/end_city/bridge_end.nbt +++ b/data/minecraft/structure/end_city/bridge_end.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:62f982074cfb3a9b3e13c92769c6603ac0f03813623f58c65f25681793ddccbb -size 474 +oid sha256:f8c9584b4f735c5cdf76bf099ce2afc895fe110db980b685b7713aa8d6d8caca +size 472 diff --git a/data/minecraft/structure/end_city/bridge_gentle_stairs.nbt b/data/minecraft/structure/end_city/bridge_gentle_stairs.nbt index a20aac75..435ebff6 100644 --- a/data/minecraft/structure/end_city/bridge_gentle_stairs.nbt +++ b/data/minecraft/structure/end_city/bridge_gentle_stairs.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1134e45699831949a949634e6560679ea84d76ea3ad870b20441295889a233f3 -size 1142 +oid sha256:5775ff897c80340cde6db78211b38116cf0b337922b998c6effb3c12ff5f8781 +size 1141 diff --git a/data/minecraft/structure/end_city/bridge_piece.nbt b/data/minecraft/structure/end_city/bridge_piece.nbt index ea5fb44b..236aa1d8 100644 --- a/data/minecraft/structure/end_city/bridge_piece.nbt +++ b/data/minecraft/structure/end_city/bridge_piece.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:789344962c68dbb3a6cbd9313480ba14e251681ed2831b850328bcf9ba245108 -size 598 +oid sha256:511b7d62de6dfeb80a03486cb59a60340008fb4380ca1ab169603f064a8f5ca6 +size 597 diff --git a/data/minecraft/structure/end_city/bridge_steep_stairs.nbt b/data/minecraft/structure/end_city/bridge_steep_stairs.nbt index 786da4b1..270c565b 100644 --- a/data/minecraft/structure/end_city/bridge_steep_stairs.nbt +++ b/data/minecraft/structure/end_city/bridge_steep_stairs.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:82baefdec3c80f5b6d117650a5de5a3c2a4bf93ede172df318a38d6489bcfed3 -size 713 +oid sha256:b661a8b96bb9ded662891df0a91a038ca64f48a3eebebdc2c9d957f399c51089 +size 712 diff --git a/data/minecraft/structure/end_city/fat_tower_base.nbt b/data/minecraft/structure/end_city/fat_tower_base.nbt index 2629131a..12a0d75e 100644 --- a/data/minecraft/structure/end_city/fat_tower_base.nbt +++ b/data/minecraft/structure/end_city/fat_tower_base.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:044373d9d134bc7263af73a9870c664f003d38cda25111d32d69c7f1cb325563 -size 2337 +oid sha256:8d983bdf17cb28fae2e722e3f12c5ced006b15e14c0a4a2177f43d3bab3980c8 +size 2336 diff --git a/data/minecraft/structure/end_city/fat_tower_middle.nbt b/data/minecraft/structure/end_city/fat_tower_middle.nbt index 1aa1ed96..f901a16d 100644 --- a/data/minecraft/structure/end_city/fat_tower_middle.nbt +++ b/data/minecraft/structure/end_city/fat_tower_middle.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b91378ade04e0b359eb2dfb9b7b09478515b1d26e6baacfb1322d65f4a5929ef +oid sha256:11e031add9ba3b0f92b6f443bbc7968d6fe20d0cc5eadc41003b418322d2d928 size 4466 diff --git a/data/minecraft/structure/end_city/fat_tower_top.nbt b/data/minecraft/structure/end_city/fat_tower_top.nbt index 328b2de9..97ad5c73 100644 --- a/data/minecraft/structure/end_city/fat_tower_top.nbt +++ b/data/minecraft/structure/end_city/fat_tower_top.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:db3fa798586ebef9fc1ae9f9ece4ff756b399862a80ac92054f6968baf12c20d +oid sha256:b6f0d8496cfdf3c044321db2aa1e73b7aa1ffd17933f097e2afc19a88df3d816 size 5958 diff --git a/data/minecraft/structure/end_city/second_floor_1.nbt b/data/minecraft/structure/end_city/second_floor_1.nbt index f2921f87..69aaf2f2 100644 --- a/data/minecraft/structure/end_city/second_floor_1.nbt +++ b/data/minecraft/structure/end_city/second_floor_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:12e89c89487391b87091f0a1c9b94489873889c4e32f587cac7d945eab993e4e -size 3715 +oid sha256:7ac13d6ea4f1e99b03a5330655e92948171ee7a175d0947aee0d8b8397474473 +size 3714 diff --git a/data/minecraft/structure/end_city/second_floor_2.nbt b/data/minecraft/structure/end_city/second_floor_2.nbt index fe7f0554..2009f12e 100644 --- a/data/minecraft/structure/end_city/second_floor_2.nbt +++ b/data/minecraft/structure/end_city/second_floor_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:603340fad19f2acc2d6c4bc405b230b96c003d45729e8f37e3ff6378355de3c5 +oid sha256:a42e4d73950c0092dff4b204bb39d22bee0d2a9d097e0d981c28e4b3d82f6b4a size 3968 diff --git a/data/minecraft/structure/end_city/second_roof.nbt b/data/minecraft/structure/end_city/second_roof.nbt index a451ab67..a92cbadd 100644 --- a/data/minecraft/structure/end_city/second_roof.nbt +++ b/data/minecraft/structure/end_city/second_roof.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a11534be1730b291ea5681c600d8d1a1d41e5bdb40af8802302716c588712b9a -size 1425 +oid sha256:d6d64e50b669fcbf22b9064d39f845a0d13975558d448d79178f064dfe44ccac +size 1424 diff --git a/data/minecraft/structure/end_city/ship.nbt b/data/minecraft/structure/end_city/ship.nbt index e904111d..b245b35a 100644 --- a/data/minecraft/structure/end_city/ship.nbt +++ b/data/minecraft/structure/end_city/ship.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0994e1330051d00c9c63ccb952fbda915f82b24ac7bdbd348acfa136c524a3ce +oid sha256:481bdea0d773b12b324c02fefca44c436753db11784a60aa73b95ea701037e52 size 26443 diff --git a/data/minecraft/structure/end_city/third_floor_1.nbt b/data/minecraft/structure/end_city/third_floor_1.nbt index 53882057..44b38692 100644 --- a/data/minecraft/structure/end_city/third_floor_1.nbt +++ b/data/minecraft/structure/end_city/third_floor_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e9e670e66ac28a5610fe62d469e7bfdb0a6bcd82aa00edb4171ef1d21d141cbf +oid sha256:8fdf5c1445070a1dd12fba64c463b68e08ef11c2298d9fa0aca2028fc2eae81d size 4785 diff --git a/data/minecraft/structure/end_city/third_floor_2.nbt b/data/minecraft/structure/end_city/third_floor_2.nbt index 3d1b8316..5407ee80 100644 --- a/data/minecraft/structure/end_city/third_floor_2.nbt +++ b/data/minecraft/structure/end_city/third_floor_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:81e54f09bc2b9ff7b05e1a88ace0f03c19acb02434aefa3b1654417e8b09c150 +oid sha256:d92747e9c4e1b8891697c1031b4f7a30d51c6ef4ed0a65a6bc9ca882e0be7ab2 size 5157 diff --git a/data/minecraft/structure/end_city/third_roof.nbt b/data/minecraft/structure/end_city/third_roof.nbt index 48fdce12..bc29ff7b 100644 --- a/data/minecraft/structure/end_city/third_roof.nbt +++ b/data/minecraft/structure/end_city/third_roof.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bda930d568b95fdd7a0c3fc43d6b1300bfeb61f90fe288ca1e875512453b4454 -size 1830 +oid sha256:3710b38a74ea1828811c5366583181e12973eaf3c668a41cffc0be6ae094afe5 +size 1829 diff --git a/data/minecraft/structure/end_city/tower_base.nbt b/data/minecraft/structure/end_city/tower_base.nbt index 022d36ca..86018a23 100644 --- a/data/minecraft/structure/end_city/tower_base.nbt +++ b/data/minecraft/structure/end_city/tower_base.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cea787e714a9731b6638e018d1d4c0fa12de4c76c477bb5c4105781095ced0ad -size 933 +oid sha256:f13a75e1b84301ea77c31754f9645d423557729c5c88ea2b230c6c657b03f14f +size 932 diff --git a/data/minecraft/structure/end_city/tower_floor.nbt b/data/minecraft/structure/end_city/tower_floor.nbt index 941dc7e9..a318bf60 100644 --- a/data/minecraft/structure/end_city/tower_floor.nbt +++ b/data/minecraft/structure/end_city/tower_floor.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7405d29928e16045ba3ccd083bd6551a6198ae083403a80496f62d7639792db9 -size 979 +oid sha256:b79bc65c325483871846de9228801df7dbe3f3bb27092d0387524c8da1ed73bb +size 978 diff --git a/data/minecraft/structure/end_city/tower_piece.nbt b/data/minecraft/structure/end_city/tower_piece.nbt index 976a95a7..ce74706a 100644 --- a/data/minecraft/structure/end_city/tower_piece.nbt +++ b/data/minecraft/structure/end_city/tower_piece.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1ef6aba00dd0914f9daaac8e677e632917ca5532a8a60e134501707692454ad2 -size 898 +oid sha256:5d7a31adf36ac351055aab1a66001b19f9f299fc5abb3b936aa4545c41a9a0c6 +size 897 diff --git a/data/minecraft/structure/end_city/tower_top.nbt b/data/minecraft/structure/end_city/tower_top.nbt index 99d4b0c8..8f3abf60 100644 --- a/data/minecraft/structure/end_city/tower_top.nbt +++ b/data/minecraft/structure/end_city/tower_top.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6727266ac2215983fded21ccef1aae0f5fe1079d163f73282445f2b240835493 +oid sha256:22b8b89fa5ce2671c2b7c945dbb12fa7bd20a61975b8324548f166d734d8231f size 2034 diff --git a/data/minecraft/structure/fossil/skull_1.nbt b/data/minecraft/structure/fossil/skull_1.nbt index a94b9078..32cff26d 100644 --- a/data/minecraft/structure/fossil/skull_1.nbt +++ b/data/minecraft/structure/fossil/skull_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f67a9ccb8bcbff6f1affbaf542c8ecf9e9338e109451a1b3e080baa0265cd77a -size 440 +oid sha256:244efec876640b3fed63c1197369b7527fd698ab439046be4ee8040811c13fc9 +size 439 diff --git a/data/minecraft/structure/fossil/skull_1_coal.nbt b/data/minecraft/structure/fossil/skull_1_coal.nbt index 9a8378eb..8c49203e 100644 --- a/data/minecraft/structure/fossil/skull_1_coal.nbt +++ b/data/minecraft/structure/fossil/skull_1_coal.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3d5b3d22b02d552ba2b6af47b582c02a214f1455e390ed33fcc3694fe0614aec -size 395 +oid sha256:b17b4f8706441ec074d1878f3fe568d61331784d5e3f86ff70f507932afa636c +size 394 diff --git a/data/minecraft/structure/fossil/skull_2.nbt b/data/minecraft/structure/fossil/skull_2.nbt index 690c5cd6..15ac01c2 100644 --- a/data/minecraft/structure/fossil/skull_2.nbt +++ b/data/minecraft/structure/fossil/skull_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:82c4ba1598926f570f8f6d1b926902f6e02c35f8265c8e3abf4f5d7ad4a25e2e -size 397 +oid sha256:be5fcd1dec77eba282507d111d663cd10f47152c3fc49a7b690385e8f1d39a49 +size 396 diff --git a/data/minecraft/structure/fossil/skull_2_coal.nbt b/data/minecraft/structure/fossil/skull_2_coal.nbt index 10948cca..b5fce6b7 100644 --- a/data/minecraft/structure/fossil/skull_2_coal.nbt +++ b/data/minecraft/structure/fossil/skull_2_coal.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ccb73c56c152a1c88a99aa63685851322406bb83c70dd4c9e15f737528ea92a5 -size 344 +oid sha256:9f89808d24261aa955e3b238d8c5f838b57889c8f916c3f7ea4ad18bfa3d2c81 +size 343 diff --git a/data/minecraft/structure/fossil/skull_3.nbt b/data/minecraft/structure/fossil/skull_3.nbt index dde30921..485141b6 100644 --- a/data/minecraft/structure/fossil/skull_3.nbt +++ b/data/minecraft/structure/fossil/skull_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3512059e86b1e3543d94ba3b82408e1e71655c0afbdc7812f0a926633d3037b8 -size 347 +oid sha256:14d4a9c81dc3a7785e916781ffa110411bfba807e263f5f8904d4563def653c1 +size 346 diff --git a/data/minecraft/structure/fossil/skull_3_coal.nbt b/data/minecraft/structure/fossil/skull_3_coal.nbt index 9afa341b..311d1611 100644 --- a/data/minecraft/structure/fossil/skull_3_coal.nbt +++ b/data/minecraft/structure/fossil/skull_3_coal.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1017ddba90675b7af3899daee66b512bc96862d2fd8933b33c79b3f1098e6b3c -size 316 +oid sha256:9e08ca21ce2db6e06943145f6f0d496e0f94fc1537029ec3af9985ec8f2168ba +size 315 diff --git a/data/minecraft/structure/fossil/skull_4.nbt b/data/minecraft/structure/fossil/skull_4.nbt index 05e85457..f0442f7b 100644 --- a/data/minecraft/structure/fossil/skull_4.nbt +++ b/data/minecraft/structure/fossil/skull_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:62d1d9dc82222b5a22d4366c444dd4b8051da9e41cba4d221840c32e433dbc02 -size 269 +oid sha256:32877e9a79e70321473a8d80ce0c550c956e9281fd6a660ece2f871f52dd6699 +size 268 diff --git a/data/minecraft/structure/fossil/skull_4_coal.nbt b/data/minecraft/structure/fossil/skull_4_coal.nbt index 38c87e53..14cd33bb 100644 --- a/data/minecraft/structure/fossil/skull_4_coal.nbt +++ b/data/minecraft/structure/fossil/skull_4_coal.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:78fe6e2c6cb0f90df1390174c1e9e3e61b0f9c0f2a4493b0ea1706a6939cf78a +oid sha256:3b6b1b33fdd01633b03d239a62e7d5017c86e3a32e2d109d333a597192e769db size 234 diff --git a/data/minecraft/structure/fossil/spine_1.nbt b/data/minecraft/structure/fossil/spine_1.nbt index 142faa8f..88c67f45 100644 --- a/data/minecraft/structure/fossil/spine_1.nbt +++ b/data/minecraft/structure/fossil/spine_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:12b9b08678a7d8fc0532430a1f9c24939a2f5d7d8dd332e0e21886fc40d91363 +oid sha256:071a76c9a21d8454a8706ee36bbb7cef0eccefdc14893067014ba4b9d2f56515 size 271 diff --git a/data/minecraft/structure/fossil/spine_1_coal.nbt b/data/minecraft/structure/fossil/spine_1_coal.nbt index b884919f..fb9795ad 100644 --- a/data/minecraft/structure/fossil/spine_1_coal.nbt +++ b/data/minecraft/structure/fossil/spine_1_coal.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4d81bac4c3759db1cbc8660ca55830ed5b10a06d000cc21991936961a5da6166 -size 251 +oid sha256:8c22c96e4a4acdc0568483ad9d666d8eab0ec07c4bd8be43a8353016a3bf0a8b +size 249 diff --git a/data/minecraft/structure/fossil/spine_2.nbt b/data/minecraft/structure/fossil/spine_2.nbt index 06f2f9c3..2e4e2017 100644 --- a/data/minecraft/structure/fossil/spine_2.nbt +++ b/data/minecraft/structure/fossil/spine_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1672f2faf5bdb5bce5297fa3280013ece1e555a530845fdffaae5dbdcfd9967d -size 360 +oid sha256:b80e841fd44b32d327bf717a34b9eff555ad272b156834a6f0749c7946e0798a +size 359 diff --git a/data/minecraft/structure/fossil/spine_2_coal.nbt b/data/minecraft/structure/fossil/spine_2_coal.nbt index 0e5a8474..aa04ca3e 100644 --- a/data/minecraft/structure/fossil/spine_2_coal.nbt +++ b/data/minecraft/structure/fossil/spine_2_coal.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a93a203668363d82b6acce4acd033a700502c5a6d24f0604cc46acad1df9249b -size 324 +oid sha256:6c4575b94dcd0d2befc3d260fe62d79a948981402c1b76417e028a8ef468fb23 +size 323 diff --git a/data/minecraft/structure/fossil/spine_3.nbt b/data/minecraft/structure/fossil/spine_3.nbt index 80793545..974c0503 100644 --- a/data/minecraft/structure/fossil/spine_3.nbt +++ b/data/minecraft/structure/fossil/spine_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1fc29e2470a0937d265d0ad12aee4a328867a5fa485ca11104d9bb8dbb076bf3 -size 456 +oid sha256:88bc1e1fe7dcad947b4bc9420638eb4b52af7fc52db0be10435eb4ae63a8f907 +size 455 diff --git a/data/minecraft/structure/fossil/spine_3_coal.nbt b/data/minecraft/structure/fossil/spine_3_coal.nbt index ab3c6063..9a1fe5e4 100644 --- a/data/minecraft/structure/fossil/spine_3_coal.nbt +++ b/data/minecraft/structure/fossil/spine_3_coal.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0b5a7e98900175160baee213356e92e350a074b93e2fe69ef15682e11d02e157 -size 436 +oid sha256:ab729e567ed388078b4919e5b46fac4c72e24f0a98df58e594f34f6f101b693f +size 435 diff --git a/data/minecraft/structure/fossil/spine_4.nbt b/data/minecraft/structure/fossil/spine_4.nbt index 556dbeda..89dc1644 100644 --- a/data/minecraft/structure/fossil/spine_4.nbt +++ b/data/minecraft/structure/fossil/spine_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3acbd2eb38b5c2f39d7e43dc03ab14ee172907cc2dfa3c9da28e2816a99db79e -size 528 +oid sha256:d54b509aff5e4534916a66c3b5e96028c22c995139d6ea6fcf501367b4df1db3 +size 527 diff --git a/data/minecraft/structure/fossil/spine_4_coal.nbt b/data/minecraft/structure/fossil/spine_4_coal.nbt index 9f8ecfa5..7fb1148f 100644 --- a/data/minecraft/structure/fossil/spine_4_coal.nbt +++ b/data/minecraft/structure/fossil/spine_4_coal.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7d50cb4b635251fdd308e66af93c3a4aaada670125ed27916b0acb349157e461 -size 481 +oid sha256:8a2bf2d803b7e1909034d0f92800eb21521acb207cef74f845be68e182dd7336 +size 480 diff --git a/data/minecraft/structure/igloo/bottom.nbt b/data/minecraft/structure/igloo/bottom.nbt index 12fee73d..91025fce 100644 --- a/data/minecraft/structure/igloo/bottom.nbt +++ b/data/minecraft/structure/igloo/bottom.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1e58c94869df737aba243b0d71475e0de4a2e362ecbd9558685c8c639467d792 +oid sha256:4591db6d6c3bf43dc7c059e6e65d5fe0d221aa12ce02d80248ca9b89303e6000 size 2733 diff --git a/data/minecraft/structure/igloo/middle.nbt b/data/minecraft/structure/igloo/middle.nbt index e2cc7580..7c3abea3 100644 --- a/data/minecraft/structure/igloo/middle.nbt +++ b/data/minecraft/structure/igloo/middle.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:63f0b9fb373b16c117c0c1ceb0f59641d7884c0e9bf9d62b100be2a7043a7036 -size 236 +oid sha256:e1cdbcd963c9e36f87e22f467f08f1ab006e483d63289396508aed5083f998da +size 235 diff --git a/data/minecraft/structure/igloo/top.nbt b/data/minecraft/structure/igloo/top.nbt index 86da4675..5eea3c45 100644 --- a/data/minecraft/structure/igloo/top.nbt +++ b/data/minecraft/structure/igloo/top.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:678058bf03793e84c2d20a6c17478f2419e13a4e192ead375799a0dda9eee42b -size 924 +oid sha256:203d86e26e06ee63d14140e8c23e2c9bfa788dc19df6be912c05de801bf40fed +size 923 diff --git a/data/minecraft/structure/nether_fossils/fossil_1.nbt b/data/minecraft/structure/nether_fossils/fossil_1.nbt index 04593bf0..7644045a 100644 --- a/data/minecraft/structure/nether_fossils/fossil_1.nbt +++ b/data/minecraft/structure/nether_fossils/fossil_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d5d9ae24aefc3ccec718be5c4697159fafd681a1515fd9f6abed07c08681808a -size 397 +oid sha256:45e60c8880971f64fc59d7bd4dc9b9a3907c2e55b45b290cac257e3445570248 +size 396 diff --git a/data/minecraft/structure/nether_fossils/fossil_10.nbt b/data/minecraft/structure/nether_fossils/fossil_10.nbt index b18b84af..8fded4e9 100644 --- a/data/minecraft/structure/nether_fossils/fossil_10.nbt +++ b/data/minecraft/structure/nether_fossils/fossil_10.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:77d5104f24443d54645e2c97433862670c7b32732928766aa305bfd4ab9f8f4b +oid sha256:0405f3cb7c4dd40b43245c10b7d1599e19d9ea003a5770d66a01f40ddc774ac2 size 237 diff --git a/data/minecraft/structure/nether_fossils/fossil_11.nbt b/data/minecraft/structure/nether_fossils/fossil_11.nbt index af046c27..6a99a2f7 100644 --- a/data/minecraft/structure/nether_fossils/fossil_11.nbt +++ b/data/minecraft/structure/nether_fossils/fossil_11.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f78dcc50eee4cb17173e6c69c0cd2e24d8e2f9fe32a4fcfff86ed1586448fdc7 -size 674 +oid sha256:49f8079287ecc0e079532b3b0f9a6197a46001806065eea425099459f05d05fe +size 673 diff --git a/data/minecraft/structure/nether_fossils/fossil_12.nbt b/data/minecraft/structure/nether_fossils/fossil_12.nbt index d62b0a50..4a8ce247 100644 --- a/data/minecraft/structure/nether_fossils/fossil_12.nbt +++ b/data/minecraft/structure/nether_fossils/fossil_12.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d560f426ef13145e2bff4d10511dbb7c58d5791e573e809cc5756fb0870ecd97 +oid sha256:7b0299947b50cf2f1d9d210b21d0373fbee5f42f530317be7efcf99649648c6b size 316 diff --git a/data/minecraft/structure/nether_fossils/fossil_13.nbt b/data/minecraft/structure/nether_fossils/fossil_13.nbt index 4e3ed3c4..c02db252 100644 --- a/data/minecraft/structure/nether_fossils/fossil_13.nbt +++ b/data/minecraft/structure/nether_fossils/fossil_13.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b41179108bf89b88c4f9158a409ab98fc31b99e517d6847c7458255c82d93a01 +oid sha256:d1b4c9dfe0554007e52eb811abb32d73118bf901821b03ac68e4544d6b90210a size 523 diff --git a/data/minecraft/structure/nether_fossils/fossil_14.nbt b/data/minecraft/structure/nether_fossils/fossil_14.nbt index dd70c285..d41327dc 100644 --- a/data/minecraft/structure/nether_fossils/fossil_14.nbt +++ b/data/minecraft/structure/nether_fossils/fossil_14.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:64268ce9be318da6fe1a934ebc7b4560d9bda03d29161790c029a6431ae13ff3 -size 938 +oid sha256:112c8b1007ad280ca6f4e4a5840d667e31572a4d0b8a255772193bf271ebb718 +size 937 diff --git a/data/minecraft/structure/nether_fossils/fossil_2.nbt b/data/minecraft/structure/nether_fossils/fossil_2.nbt index 9fdef584..1fc8c7c9 100644 --- a/data/minecraft/structure/nether_fossils/fossil_2.nbt +++ b/data/minecraft/structure/nether_fossils/fossil_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:92635343c28ea63d2122bc37db4641877fdc8b466483a839f93ad6323af59f20 -size 258 +oid sha256:5df6ca19d765d89cb0e46a75bf11fe40c16a7470089f2a49c39f44fe20a9f633 +size 257 diff --git a/data/minecraft/structure/nether_fossils/fossil_3.nbt b/data/minecraft/structure/nether_fossils/fossil_3.nbt index 2a7fd425..0d4934db 100644 --- a/data/minecraft/structure/nether_fossils/fossil_3.nbt +++ b/data/minecraft/structure/nether_fossils/fossil_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b1774f020a602c85f301bbc608bfebe3771d40a71ed0eba10d9c1f3d78354329 -size 249 +oid sha256:9d13da7bcb29d0811c8026a03435912a21376a77f07924e3e245817452f905a5 +size 247 diff --git a/data/minecraft/structure/nether_fossils/fossil_4.nbt b/data/minecraft/structure/nether_fossils/fossil_4.nbt index 92bd3426..b6ef6a7a 100644 --- a/data/minecraft/structure/nether_fossils/fossil_4.nbt +++ b/data/minecraft/structure/nether_fossils/fossil_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4b10f4f7bca5519163f3f078e4300a52b01e5c31c7311c9d4a0e9b5c12e78124 -size 211 +oid sha256:0ad792a3f87f1d1db00103c55a19678d09d08a317b7c2d96de459f21bd2611a2 +size 210 diff --git a/data/minecraft/structure/nether_fossils/fossil_5.nbt b/data/minecraft/structure/nether_fossils/fossil_5.nbt index 35b6d9fc..3f8bac60 100644 --- a/data/minecraft/structure/nether_fossils/fossil_5.nbt +++ b/data/minecraft/structure/nether_fossils/fossil_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4999726aa143e45b6bb492f7c4b5144227e0a1fe68026778fb4871e4d607e364 -size 205 +oid sha256:db9e48e6a89d62166610fa6cee4df6f2d0d53177cc2ada042e4405a9754f56e4 +size 204 diff --git a/data/minecraft/structure/nether_fossils/fossil_6.nbt b/data/minecraft/structure/nether_fossils/fossil_6.nbt index f1aa346d..05a841b2 100644 --- a/data/minecraft/structure/nether_fossils/fossil_6.nbt +++ b/data/minecraft/structure/nether_fossils/fossil_6.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:715e4b46fdd98d198d7ea241267dd1753a53c6a701c6e68a96768e8ce741c394 -size 630 +oid sha256:104cf37cd52183570bd69b040c171a1a85d80b1c27dd13f2bbff60f42b3e8626 +size 629 diff --git a/data/minecraft/structure/nether_fossils/fossil_7.nbt b/data/minecraft/structure/nether_fossils/fossil_7.nbt index b1cd5992..7d38a848 100644 --- a/data/minecraft/structure/nether_fossils/fossil_7.nbt +++ b/data/minecraft/structure/nether_fossils/fossil_7.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:33023708a00867e7086e75b0d3747012266c62a927d9998f706181fed1fa96b0 +oid sha256:bd3d914d9ca5df508f6a96be943a1215df216e6fe9e30236e13dcc152e9218a6 size 509 diff --git a/data/minecraft/structure/nether_fossils/fossil_8.nbt b/data/minecraft/structure/nether_fossils/fossil_8.nbt index 08a96ca5..a6d498ff 100644 --- a/data/minecraft/structure/nether_fossils/fossil_8.nbt +++ b/data/minecraft/structure/nether_fossils/fossil_8.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:872403887b06b9ce9cefa5bcb5caea1c905a209819c4887f4f285a66ca3c8408 +oid sha256:82b8914cd833ae2f09663092a4521a4262b69ec13a0020c6c730e8d7972084c4 size 219 diff --git a/data/minecraft/structure/nether_fossils/fossil_9.nbt b/data/minecraft/structure/nether_fossils/fossil_9.nbt index 9c6ad2d9..645817bc 100644 --- a/data/minecraft/structure/nether_fossils/fossil_9.nbt +++ b/data/minecraft/structure/nether_fossils/fossil_9.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d87a3ddde615fd48f75508d4d793296592c0d47fc1166edc7dc50af56b2ed433 -size 394 +oid sha256:c6b3cde50cddee64a3da9f71b6f2e7d06a74ab09bfceaefde1d97a87842bd0dc +size 393 diff --git a/data/minecraft/structure/pillager_outpost/base_plate.nbt b/data/minecraft/structure/pillager_outpost/base_plate.nbt index b88e218f..b08b08b2 100644 --- a/data/minecraft/structure/pillager_outpost/base_plate.nbt +++ b/data/minecraft/structure/pillager_outpost/base_plate.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:84355755e68a62a98435e44904b2b65c3cf1377b1257c2ab84d927aa85a7141c -size 19281 +oid sha256:c3114477200518c52babfd1d390b0238065b2a7fb77db5bfa9504255db083f8f +size 19280 diff --git a/data/minecraft/structure/pillager_outpost/feature_cage1.nbt b/data/minecraft/structure/pillager_outpost/feature_cage1.nbt index 2c0b6459..6bd00120 100644 --- a/data/minecraft/structure/pillager_outpost/feature_cage1.nbt +++ b/data/minecraft/structure/pillager_outpost/feature_cage1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:96bab8a329a9f5a6a5e97591c0d32464ea91d6b078fabbe6369f23b3f0ec71d6 +oid sha256:cee93c5f71cc990205191b23dd9a1554960b99fb39060146969722f21c14367e size 1629 diff --git a/data/minecraft/structure/pillager_outpost/feature_cage2.nbt b/data/minecraft/structure/pillager_outpost/feature_cage2.nbt index 3a7bc89d..37bb9a61 100644 --- a/data/minecraft/structure/pillager_outpost/feature_cage2.nbt +++ b/data/minecraft/structure/pillager_outpost/feature_cage2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ede97b143cadda6488e6abe62dca924df7417b123695a42febb478e6b9154aef -size 1031 +oid sha256:5ea73e7f334b7f3dd2a84b872ad300551d6a894737ac313d5f9ff5007dec2c34 +size 1030 diff --git a/data/minecraft/structure/pillager_outpost/feature_cage_with_allays.nbt b/data/minecraft/structure/pillager_outpost/feature_cage_with_allays.nbt index 43b1fc6b..55c91e47 100644 --- a/data/minecraft/structure/pillager_outpost/feature_cage_with_allays.nbt +++ b/data/minecraft/structure/pillager_outpost/feature_cage_with_allays.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8e9582060b76d5b4f9ff1e8a4d5245875171f188eed4d973bf0b5e3e5eaac93d +oid sha256:1adcb80a38bd27499b4d3dd5bc2b75f1c10d0f2af310146ccba28a9d65b92539 size 1755 diff --git a/data/minecraft/structure/pillager_outpost/feature_logs.nbt b/data/minecraft/structure/pillager_outpost/feature_logs.nbt index b8953c03..50d66475 100644 --- a/data/minecraft/structure/pillager_outpost/feature_logs.nbt +++ b/data/minecraft/structure/pillager_outpost/feature_logs.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b6f03c98575628849c648c1dcb02b799b92081096d56d2708fec13478c8c475a -size 658 +oid sha256:6e58e0144052d3a887add22f2d14576783974ec8b62e577752e995598721ef14 +size 657 diff --git a/data/minecraft/structure/pillager_outpost/feature_plate.nbt b/data/minecraft/structure/pillager_outpost/feature_plate.nbt index 77475789..76f55b5c 100644 --- a/data/minecraft/structure/pillager_outpost/feature_plate.nbt +++ b/data/minecraft/structure/pillager_outpost/feature_plate.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3b321650cbea6b1e0e52a1fa231634fc35e959a8f1f3467381fa6926430ae32e -size 6039 +oid sha256:8d2e6887e52805098558b377c8ea279fb671cb68bf602521230d00a4c2df49f2 +size 6038 diff --git a/data/minecraft/structure/pillager_outpost/feature_targets.nbt b/data/minecraft/structure/pillager_outpost/feature_targets.nbt index e8f72d3d..3e6db738 100644 --- a/data/minecraft/structure/pillager_outpost/feature_targets.nbt +++ b/data/minecraft/structure/pillager_outpost/feature_targets.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:08d2d41aa6df50ed9e44465226c1bef060dfd42b5422f63888e8dc2d28164ee5 -size 578 +oid sha256:3a23c56a1fff10d56a297d9aee7a1ae148abf4b41d0953895a6390570d6c6797 +size 577 diff --git a/data/minecraft/structure/pillager_outpost/feature_tent1.nbt b/data/minecraft/structure/pillager_outpost/feature_tent1.nbt index d9565072..d918f335 100644 --- a/data/minecraft/structure/pillager_outpost/feature_tent1.nbt +++ b/data/minecraft/structure/pillager_outpost/feature_tent1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0dacf6fdfaab06e39bf1c32173ec672dd3c739096bafb655356be6af8f573c53 -size 856 +oid sha256:f804e2817db3b80d21b75329fb54e5e5617304999ac560007a0ea9ac580fbb42 +size 855 diff --git a/data/minecraft/structure/pillager_outpost/feature_tent2.nbt b/data/minecraft/structure/pillager_outpost/feature_tent2.nbt index c5454d6a..abf908de 100644 --- a/data/minecraft/structure/pillager_outpost/feature_tent2.nbt +++ b/data/minecraft/structure/pillager_outpost/feature_tent2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:16dd9a2f021cebb8f40b0e0eb63f27692b0a24dd517b2cb70e10f20fdc80ae30 -size 867 +oid sha256:e595affef420df0270c927b4e1212af0a9ed3241c0a47b848d292fc9110581ee +size 866 diff --git a/data/minecraft/structure/pillager_outpost/watchtower.nbt b/data/minecraft/structure/pillager_outpost/watchtower.nbt index e75d54fd..87951d58 100644 --- a/data/minecraft/structure/pillager_outpost/watchtower.nbt +++ b/data/minecraft/structure/pillager_outpost/watchtower.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:987c57670e3bdcfa5a1e620ffe74d49aa10f03cd451ceacdce85f19dd2d7fdf8 -size 14584 +oid sha256:aa9c92d4a96a60879970a2c165349523eefc39906bcaeec65d20779fdd5f71f1 +size 14583 diff --git a/data/minecraft/structure/pillager_outpost/watchtower_overgrown.nbt b/data/minecraft/structure/pillager_outpost/watchtower_overgrown.nbt index dff4f56b..48e878d6 100644 --- a/data/minecraft/structure/pillager_outpost/watchtower_overgrown.nbt +++ b/data/minecraft/structure/pillager_outpost/watchtower_overgrown.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7e7dfc37b6f86436fe208431522a40b371f36cf895ea663095d9bd605a7bfe69 -size 16025 +oid sha256:bd671e1f3ddeea681ea98c80a69a3434bfdc25c6cd4c50580b9e23617ee2e3c3 +size 16024 diff --git a/data/minecraft/structure/ruined_portal/giant_portal_1.nbt b/data/minecraft/structure/ruined_portal/giant_portal_1.nbt index 2eaaf265..3bfb5bd9 100644 --- a/data/minecraft/structure/ruined_portal/giant_portal_1.nbt +++ b/data/minecraft/structure/ruined_portal/giant_portal_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:efe8e7453786769b9ce794994e50872c922a99f442482a41bbfe44062a5bf282 -size 7196 +oid sha256:7151a791694a9df658de8d3128072e6d4286479a5ea0bb2ab238bd8ca5b271ae +size 7195 diff --git a/data/minecraft/structure/ruined_portal/giant_portal_2.nbt b/data/minecraft/structure/ruined_portal/giant_portal_2.nbt index 4c7e9637..8f8dc730 100644 --- a/data/minecraft/structure/ruined_portal/giant_portal_2.nbt +++ b/data/minecraft/structure/ruined_portal/giant_portal_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e8f3b44bbf4592192360daaf6969f54c4ead3813e64fc54609289f86b475e243 -size 6837 +oid sha256:080b672a1c516fa3c0475dcfaacc07f0c4d0bd2fae95287a04b56ecf051cc435 +size 6836 diff --git a/data/minecraft/structure/ruined_portal/giant_portal_3.nbt b/data/minecraft/structure/ruined_portal/giant_portal_3.nbt index 12762cf4..d4638d4e 100644 --- a/data/minecraft/structure/ruined_portal/giant_portal_3.nbt +++ b/data/minecraft/structure/ruined_portal/giant_portal_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:855ff28d86daa866c6ce9e6944fbdc87760884b1e9bdc758a31e81238ddb9af3 +oid sha256:e3fd29dfc074cc77bc8736a08201e5bf881ce0119b5411cc3926f7c1260b045d size 9897 diff --git a/data/minecraft/structure/ruined_portal/portal_1.nbt b/data/minecraft/structure/ruined_portal/portal_1.nbt index 6415843c..e6b4b6f8 100644 --- a/data/minecraft/structure/ruined_portal/portal_1.nbt +++ b/data/minecraft/structure/ruined_portal/portal_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c00bfcb209983c0eef9243739725e43cef733743d315ce77b00b654a5b2dbef5 -size 1431 +oid sha256:b3fae3efc6982c2b2d8fb7bbd66ae5d7f47c6301016dd07a0dac0f049d33552b +size 1430 diff --git a/data/minecraft/structure/ruined_portal/portal_10.nbt b/data/minecraft/structure/ruined_portal/portal_10.nbt index 8b74015d..cbaea385 100644 --- a/data/minecraft/structure/ruined_portal/portal_10.nbt +++ b/data/minecraft/structure/ruined_portal/portal_10.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6d594e7fc036d769724f8db44c285dd2db8285d16cca0d131a11e17e5d946d71 +oid sha256:0b02513e237eec743eabfa5736d6b231f65d895ae3b30fbc898f51f4e58aae1f size 2878 diff --git a/data/minecraft/structure/ruined_portal/portal_2.nbt b/data/minecraft/structure/ruined_portal/portal_2.nbt index acfcb6d5..a6e598cc 100644 --- a/data/minecraft/structure/ruined_portal/portal_2.nbt +++ b/data/minecraft/structure/ruined_portal/portal_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:473904fda3fd5623c2d26c7a11d3b7a3da12672bb54bd5631ef8f4a5b3f79b05 -size 2762 +oid sha256:912139f0ba05721067f2f80388ba328a6aecea2dc26f85ad72732ad7fb38fd02 +size 2761 diff --git a/data/minecraft/structure/ruined_portal/portal_3.nbt b/data/minecraft/structure/ruined_portal/portal_3.nbt index 812a9c87..2612d3f5 100644 --- a/data/minecraft/structure/ruined_portal/portal_3.nbt +++ b/data/minecraft/structure/ruined_portal/portal_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f37c9efd82caba830112049a338dac3c5bee2e23f6109d94aff958ef0d9ae4f4 -size 1994 +oid sha256:71d19cea1e0078d4edaae828a1367d03f3500f1044bb9f2cfee5ac3d45b53d29 +size 1993 diff --git a/data/minecraft/structure/ruined_portal/portal_4.nbt b/data/minecraft/structure/ruined_portal/portal_4.nbt index 74536afe..0f244fbd 100644 --- a/data/minecraft/structure/ruined_portal/portal_4.nbt +++ b/data/minecraft/structure/ruined_portal/portal_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:916d94ae7a63be83be089f061cb4f3200fa526bf183eae61174a30298e5c54ab -size 1885 +oid sha256:f0175eaaacf97c28fa2f23e8c9013f4b28b04ba1ba4abaad6ceb05163dc19e85 +size 1884 diff --git a/data/minecraft/structure/ruined_portal/portal_5.nbt b/data/minecraft/structure/ruined_portal/portal_5.nbt index 830a871b..dd475850 100644 --- a/data/minecraft/structure/ruined_portal/portal_5.nbt +++ b/data/minecraft/structure/ruined_portal/portal_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:67972b294fd8d52eb2e2660256fb750e975baa4cb76bc264e586612915501fcf +oid sha256:6f50d3d3cf43cb76a496e55a4a9a52dacdd5ce53896c4727244c7ded17ab635a size 2215 diff --git a/data/minecraft/structure/ruined_portal/portal_6.nbt b/data/minecraft/structure/ruined_portal/portal_6.nbt index 5998ff90..4c980c8f 100644 --- a/data/minecraft/structure/ruined_portal/portal_6.nbt +++ b/data/minecraft/structure/ruined_portal/portal_6.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1deb0760464ffb71eb13c27066e3648895770b7eda9a67ca3748bb2b7d422c2b +oid sha256:780e4e6bd13a6cbc037f26fce692296e12f3654a3109b171ec123ae474a76afb size 982 diff --git a/data/minecraft/structure/ruined_portal/portal_7.nbt b/data/minecraft/structure/ruined_portal/portal_7.nbt index 4f78ecd0..cd45ff5f 100644 --- a/data/minecraft/structure/ruined_portal/portal_7.nbt +++ b/data/minecraft/structure/ruined_portal/portal_7.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:89dbdaf2eeb09149625127bbe222b31a1c3a7abd97ead865483fe07f15ef49ba -size 1830 +oid sha256:01aae74ffa991987671cb8b426ea56afe2601c484c600fe3ecd0d5e3e9149a66 +size 1829 diff --git a/data/minecraft/structure/ruined_portal/portal_8.nbt b/data/minecraft/structure/ruined_portal/portal_8.nbt index 4f10260e..b70c43e9 100644 --- a/data/minecraft/structure/ruined_portal/portal_8.nbt +++ b/data/minecraft/structure/ruined_portal/portal_8.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:18e750d49c3a95f3042e150c490aee610987fb51ae6476c5d18188e255c598f5 -size 3407 +oid sha256:3ac15c9adb4a9b166ee0d3b817cf2cb0dbabdc4a776188c90fa9506141e5acf8 +size 3406 diff --git a/data/minecraft/structure/ruined_portal/portal_9.nbt b/data/minecraft/structure/ruined_portal/portal_9.nbt index 2ff8ba52..8faf768a 100644 --- a/data/minecraft/structure/ruined_portal/portal_9.nbt +++ b/data/minecraft/structure/ruined_portal/portal_9.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5b7e58054c05db85e6f7731cb464efa5946df793886c58b464ea158ec1d8dff2 -size 2168 +oid sha256:b1c9b7e2cb5ecca4befe6843d71e963cf8f24b40b0531bcfe36102f633cfca88 +size 2167 diff --git a/data/minecraft/structure/shipwreck/rightsideup_backhalf.nbt b/data/minecraft/structure/shipwreck/rightsideup_backhalf.nbt index 837ac46e..00a31933 100644 --- a/data/minecraft/structure/shipwreck/rightsideup_backhalf.nbt +++ b/data/minecraft/structure/shipwreck/rightsideup_backhalf.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d1772746fcfcc5ba06ee8cd8692a7569b01877c1e268177874690129d01fd06e +oid sha256:0308106542b45df5ea10f4c3ca79b77d1e975388298bdaafe5b2e4df0c247bbd size 2711 diff --git a/data/minecraft/structure/shipwreck/rightsideup_backhalf_degraded.nbt b/data/minecraft/structure/shipwreck/rightsideup_backhalf_degraded.nbt index 35f3b6cf..80a320ab 100644 --- a/data/minecraft/structure/shipwreck/rightsideup_backhalf_degraded.nbt +++ b/data/minecraft/structure/shipwreck/rightsideup_backhalf_degraded.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cf840c590068980a85534735e7d83568ee33f66857be10cd268a52da6145bf81 +oid sha256:4da4a22f852d5179f4740e6a38eede8edac60652fab6384a28b2802d0f9d4958 size 2568 diff --git a/data/minecraft/structure/shipwreck/rightsideup_fronthalf.nbt b/data/minecraft/structure/shipwreck/rightsideup_fronthalf.nbt index b08cae8a..ad2875f3 100644 --- a/data/minecraft/structure/shipwreck/rightsideup_fronthalf.nbt +++ b/data/minecraft/structure/shipwreck/rightsideup_fronthalf.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:653ab2e95527f48c59540b17fe2ee90e16d246ba59f55f5711e74e8552a446a0 +oid sha256:13eec9337c7c5a988010c04cd201d7478841f316842d9d73dc5393da4d8980c1 size 2471 diff --git a/data/minecraft/structure/shipwreck/rightsideup_fronthalf_degraded.nbt b/data/minecraft/structure/shipwreck/rightsideup_fronthalf_degraded.nbt index 2f1c452e..043d6f84 100644 --- a/data/minecraft/structure/shipwreck/rightsideup_fronthalf_degraded.nbt +++ b/data/minecraft/structure/shipwreck/rightsideup_fronthalf_degraded.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4a7ee8dc2499a3a09332a2465b37829e64c7879f86050f282bdddb436929755c +oid sha256:6c1e28bf4e97a1b356263a51776004b0aaf90385eab270aa6d7f70bc2f9166cc size 2251 diff --git a/data/minecraft/structure/shipwreck/rightsideup_full.nbt b/data/minecraft/structure/shipwreck/rightsideup_full.nbt index 327c27fd..2d9199dd 100644 --- a/data/minecraft/structure/shipwreck/rightsideup_full.nbt +++ b/data/minecraft/structure/shipwreck/rightsideup_full.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d0fe0ac83d89a96df1df1368e134ef32825ed85040681b665eb83002a8c15628 +oid sha256:43e580ddf3bbd370f6332f189d486a189083a903a9525be8fa73d34db6efdc3e size 3753 diff --git a/data/minecraft/structure/shipwreck/rightsideup_full_degraded.nbt b/data/minecraft/structure/shipwreck/rightsideup_full_degraded.nbt index 6866aef9..1c9db468 100644 --- a/data/minecraft/structure/shipwreck/rightsideup_full_degraded.nbt +++ b/data/minecraft/structure/shipwreck/rightsideup_full_degraded.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5d13db481ba0e7a2fb8962a9a40da19bb401977fe6dae9b04ce266cb2ed35f39 +oid sha256:505fea6b1a5e046186fe7d3ade75c0f459e18f2551df1bd1c6b2f2011039104a size 3526 diff --git a/data/minecraft/structure/shipwreck/sideways_backhalf.nbt b/data/minecraft/structure/shipwreck/sideways_backhalf.nbt index dab00014..193ba3b9 100644 --- a/data/minecraft/structure/shipwreck/sideways_backhalf.nbt +++ b/data/minecraft/structure/shipwreck/sideways_backhalf.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9644a99cecc46795cdb02ca844be99cbca15d36c60c10dbf08e257061507bc71 +oid sha256:677507c6e2515252c2a722a40e60a9c3e6711230bedad72fdce77bdc9066cfd7 size 2434 diff --git a/data/minecraft/structure/shipwreck/sideways_backhalf_degraded.nbt b/data/minecraft/structure/shipwreck/sideways_backhalf_degraded.nbt index 72139e0c..edbf4292 100644 --- a/data/minecraft/structure/shipwreck/sideways_backhalf_degraded.nbt +++ b/data/minecraft/structure/shipwreck/sideways_backhalf_degraded.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e22be9d1253d3d6d8bafe874abbf0ce545e0c7c95d0515f02776a6a8c767269f +oid sha256:b6c486d4e06a80652fb82db703674d52e1a02a1313e120cf485d136d2b03b522 size 2257 diff --git a/data/minecraft/structure/shipwreck/sideways_fronthalf.nbt b/data/minecraft/structure/shipwreck/sideways_fronthalf.nbt index 79be320c..3101eb6f 100644 --- a/data/minecraft/structure/shipwreck/sideways_fronthalf.nbt +++ b/data/minecraft/structure/shipwreck/sideways_fronthalf.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7aad4bfedd8ae066cc79955f78ceb8ece04d37de71746b89b5f96c7b90df0788 +oid sha256:5648bffc4a808fd9fcc392f155645afbd03fc872ec90e2abe37e4815d92f2483 size 2202 diff --git a/data/minecraft/structure/shipwreck/sideways_fronthalf_degraded.nbt b/data/minecraft/structure/shipwreck/sideways_fronthalf_degraded.nbt index 58809f49..1d487a17 100644 --- a/data/minecraft/structure/shipwreck/sideways_fronthalf_degraded.nbt +++ b/data/minecraft/structure/shipwreck/sideways_fronthalf_degraded.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3ef92c72f488afd1b0ced326e0abd687b085917e202ad4b058656282bcb4215e +oid sha256:8b405ea3ea8b9b6970866aebd2a681e84d75fb7aa2e3245b856bfceb9e63e6ad size 1912 diff --git a/data/minecraft/structure/shipwreck/sideways_full.nbt b/data/minecraft/structure/shipwreck/sideways_full.nbt index c2f023ad..9a857bc4 100644 --- a/data/minecraft/structure/shipwreck/sideways_full.nbt +++ b/data/minecraft/structure/shipwreck/sideways_full.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9477414e6788d38525ec43976012f05eb0c5ae54b8642628f5a75515f15a8683 +oid sha256:11d05630215f2df24df14cd9fb637277c39a84103194a12564a6881c69fac1f5 size 3510 diff --git a/data/minecraft/structure/shipwreck/sideways_full_degraded.nbt b/data/minecraft/structure/shipwreck/sideways_full_degraded.nbt index 3381d646..610be3bd 100644 --- a/data/minecraft/structure/shipwreck/sideways_full_degraded.nbt +++ b/data/minecraft/structure/shipwreck/sideways_full_degraded.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6dfea38083fae1a4e08ef37f3c0e8c6ea3dcb0853c773486bb79a88664590588 +oid sha256:b197f6bf9ac3b1f3c56d68379c85dc9d021c1c83c9cbb4422fed362457f11610 size 3306 diff --git a/data/minecraft/structure/shipwreck/upsidedown_backhalf.nbt b/data/minecraft/structure/shipwreck/upsidedown_backhalf.nbt index 118be812..cb8aabc6 100644 --- a/data/minecraft/structure/shipwreck/upsidedown_backhalf.nbt +++ b/data/minecraft/structure/shipwreck/upsidedown_backhalf.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:44cbd7e8a0cf5f656b8d12fddbeeb77a765716d16fae9ef339ed0284d9da8ef5 +oid sha256:55bc8d95764c9996c1ebb30586c69012c5ded7874ad8862fcc4bb5c0838d6324 size 2516 diff --git a/data/minecraft/structure/shipwreck/upsidedown_backhalf_degraded.nbt b/data/minecraft/structure/shipwreck/upsidedown_backhalf_degraded.nbt index fe35089b..96d30e5c 100644 --- a/data/minecraft/structure/shipwreck/upsidedown_backhalf_degraded.nbt +++ b/data/minecraft/structure/shipwreck/upsidedown_backhalf_degraded.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e3f975179f838b250f2d8aa23682486681cc542ae434aef36c06ef453d827502 +oid sha256:f04ae71c417410f96a5e095335e4194d0f2f76254eebb90f7ad56f1cf486f8aa size 2386 diff --git a/data/minecraft/structure/shipwreck/upsidedown_fronthalf.nbt b/data/minecraft/structure/shipwreck/upsidedown_fronthalf.nbt index c735d109..0b8de7e3 100644 --- a/data/minecraft/structure/shipwreck/upsidedown_fronthalf.nbt +++ b/data/minecraft/structure/shipwreck/upsidedown_fronthalf.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2522ee7b8a555237e3e48e3acf1b3f5230e9861d6787613fd8abe180d47681fb +oid sha256:875298df76fb71be91d3757573d347ee33cd64efd05466ee73c60af3e58e4dbd size 2322 diff --git a/data/minecraft/structure/shipwreck/upsidedown_fronthalf_degraded.nbt b/data/minecraft/structure/shipwreck/upsidedown_fronthalf_degraded.nbt index 357a1d6f..b202408d 100644 --- a/data/minecraft/structure/shipwreck/upsidedown_fronthalf_degraded.nbt +++ b/data/minecraft/structure/shipwreck/upsidedown_fronthalf_degraded.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:19ac750889afaad5fb9b856d25be14a1bb6a9ca6f251c2910a981d906fb02342 +oid sha256:e507bdc5c71375acc6db57a8afc3e225bd0bf5e0d3b8857b3abc6317c1f0cd01 size 2208 diff --git a/data/minecraft/structure/shipwreck/upsidedown_full.nbt b/data/minecraft/structure/shipwreck/upsidedown_full.nbt index 90e71893..6180c5d4 100644 --- a/data/minecraft/structure/shipwreck/upsidedown_full.nbt +++ b/data/minecraft/structure/shipwreck/upsidedown_full.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3666b0aede1c2d4aa92305338ac191326c49454b8a296babca774b40a67be533 +oid sha256:eba5b94413f4a7fdb856900c588c4db5ae083120e9bc144a7073bac626fd45d6 size 3468 diff --git a/data/minecraft/structure/shipwreck/upsidedown_full_degraded.nbt b/data/minecraft/structure/shipwreck/upsidedown_full_degraded.nbt index 8e75d576..e172346d 100644 --- a/data/minecraft/structure/shipwreck/upsidedown_full_degraded.nbt +++ b/data/minecraft/structure/shipwreck/upsidedown_full_degraded.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b362fd96683a412fa5f32582515615f852350ff1f33c276ca73e7112bafae2c8 +oid sha256:0e539ba460304a5e98fb3c0f6cc0674575bcec86581bc208aaee3df6cf9142de size 3297 diff --git a/data/minecraft/structure/shipwreck/with_mast.nbt b/data/minecraft/structure/shipwreck/with_mast.nbt index 02c6963d..5a3387eb 100644 --- a/data/minecraft/structure/shipwreck/with_mast.nbt +++ b/data/minecraft/structure/shipwreck/with_mast.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5a20c1d86d1993ffe1211f0ec5b25264a4c1f405f0bac2a3882a0f775994486e +oid sha256:9cb4c242ec7d13a3ca1b45f8cb8ae1ab205edab36c3babb44de7c3691945dc3c size 3958 diff --git a/data/minecraft/structure/shipwreck/with_mast_degraded.nbt b/data/minecraft/structure/shipwreck/with_mast_degraded.nbt index ffb24d12..2b490e2f 100644 --- a/data/minecraft/structure/shipwreck/with_mast_degraded.nbt +++ b/data/minecraft/structure/shipwreck/with_mast_degraded.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0e4cd1ff3944cb2e9e9441c843d2dc0a9694522e4593419dc80e43b96ede4083 +oid sha256:811ec60392087de85a48fe43d32c00ab5c38869a6c1b0ba1f1831ed28048c36a size 3683 diff --git a/data/minecraft/structure/trail_ruins/buildings/group_full_1.nbt b/data/minecraft/structure/trail_ruins/buildings/group_full_1.nbt index f1578e08..79c19111 100644 --- a/data/minecraft/structure/trail_ruins/buildings/group_full_1.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/group_full_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e609927bdfbff6d8512228704f9dfd160e4cfef129141a72781d073c1ae93f50 -size 1339 +oid sha256:3f1747f090d132e1f608897091679e0e036972deb23fbb459362a605fff0798c +size 1338 diff --git a/data/minecraft/structure/trail_ruins/buildings/group_full_2.nbt b/data/minecraft/structure/trail_ruins/buildings/group_full_2.nbt index 1bdcc153..b18c8dd9 100644 --- a/data/minecraft/structure/trail_ruins/buildings/group_full_2.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/group_full_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ed151bedcb63803b98a4d0350365f7a1a99a419be5df0faf5ce861bdb949f87b -size 1280 +oid sha256:2edc00e601b89c75209b4aae8395cb23a97e66fa275c8830439906e52e53a564 +size 1279 diff --git a/data/minecraft/structure/trail_ruins/buildings/group_full_3.nbt b/data/minecraft/structure/trail_ruins/buildings/group_full_3.nbt index 52e351c7..090a0303 100644 --- a/data/minecraft/structure/trail_ruins/buildings/group_full_3.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/group_full_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eef58987c1eee24f5db20b4c9344d543d45a28580308b2fbadd198e7cc9fd08a +oid sha256:d699ba360105317881e4a6025c36839c60f67a5d68a96da9cefbbe450cbd8e0a size 1298 diff --git a/data/minecraft/structure/trail_ruins/buildings/group_full_4.nbt b/data/minecraft/structure/trail_ruins/buildings/group_full_4.nbt index 35e76e3f..68f70699 100644 --- a/data/minecraft/structure/trail_ruins/buildings/group_full_4.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/group_full_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eaa3beb4f9feb7d9eac90ea6e40900f3e201f6b1d892923b8684c2650700ee37 -size 1263 +oid sha256:0e73f53d79aff23ada1c54391e2bad2dd24ec8eea5c3950cd105a513efee6689 +size 1262 diff --git a/data/minecraft/structure/trail_ruins/buildings/group_full_5.nbt b/data/minecraft/structure/trail_ruins/buildings/group_full_5.nbt index d6e107e5..58d6abc0 100644 --- a/data/minecraft/structure/trail_ruins/buildings/group_full_5.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/group_full_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d09f9ed483146faa2e1320887dfad7a5a5a4c947fc5b69847c25ddc737a97a93 -size 1260 +oid sha256:fb536552885c2d23ced8556f9130d8fb6e4fe8c5ede70a7fc3c902e5921e7c98 +size 1259 diff --git a/data/minecraft/structure/trail_ruins/buildings/group_hall_1.nbt b/data/minecraft/structure/trail_ruins/buildings/group_hall_1.nbt index f1db7988..0a61e43b 100644 --- a/data/minecraft/structure/trail_ruins/buildings/group_hall_1.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/group_hall_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c5862348eded696789f0284251bc08e93870094f1a8b931fdfb15b6e71141bdd +oid sha256:3396215f4e1f65ef4eaf878dd7bd16a4028f314a9a0b350d2c1fe72144bd9ced size 1516 diff --git a/data/minecraft/structure/trail_ruins/buildings/group_hall_2.nbt b/data/minecraft/structure/trail_ruins/buildings/group_hall_2.nbt index c6ae9041..2c7db11b 100644 --- a/data/minecraft/structure/trail_ruins/buildings/group_hall_2.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/group_hall_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b3881cdfeb78b14f97e5dcfa2344fb44ddc34452cbb1efb69f8f99366bcd767d -size 1615 +oid sha256:e8fd8ca2c9f65a49d76727e25c4364117fbe8ed3175cffe6fea29825a6834505 +size 1614 diff --git a/data/minecraft/structure/trail_ruins/buildings/group_hall_3.nbt b/data/minecraft/structure/trail_ruins/buildings/group_hall_3.nbt index e0b56ee3..40162f1f 100644 --- a/data/minecraft/structure/trail_ruins/buildings/group_hall_3.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/group_hall_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e01f4acc05ee6d19172c5f0fc1ddee515a2f0b2609d74ed5100a8ae7a057cee9 -size 1716 +oid sha256:0e708e68c54f851a96b5c4f3184f1558afe95d30f2e571499fd3bb28baa9c248 +size 1715 diff --git a/data/minecraft/structure/trail_ruins/buildings/group_hall_4.nbt b/data/minecraft/structure/trail_ruins/buildings/group_hall_4.nbt index ef3a87c2..d1408643 100644 --- a/data/minecraft/structure/trail_ruins/buildings/group_hall_4.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/group_hall_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d98657fb39597bc4ed4c916e9e3942f4cf466cd5984da1e0cedc38040f9232e1 +oid sha256:4ef15d440f5e9e4f495737d8323b545dd1b10bf01fd33f7d87b6125c02d2d024 size 1639 diff --git a/data/minecraft/structure/trail_ruins/buildings/group_hall_5.nbt b/data/minecraft/structure/trail_ruins/buildings/group_hall_5.nbt index 3ce8e57f..c9909d43 100644 --- a/data/minecraft/structure/trail_ruins/buildings/group_hall_5.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/group_hall_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:98cb6c424e237724dd28702edf586f2271170b2a69c14fa0a07433772b0322d4 -size 1525 +oid sha256:af253bda2533f72bca802b92c24db59701619dee6da6f8915cf97e4ecfd20045 +size 1524 diff --git a/data/minecraft/structure/trail_ruins/buildings/group_lower_1.nbt b/data/minecraft/structure/trail_ruins/buildings/group_lower_1.nbt index cd557cb9..0b548fa5 100644 --- a/data/minecraft/structure/trail_ruins/buildings/group_lower_1.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/group_lower_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:adc1fee8075152bd16eb5cc9ddc8cd40764cf9cdd895697c4a21e56c663ff05f -size 1046 +oid sha256:12ed6383d86944f3f0cf2a788b14dda526faf35701ca0653069e66e46d34e6da +size 1045 diff --git a/data/minecraft/structure/trail_ruins/buildings/group_lower_2.nbt b/data/minecraft/structure/trail_ruins/buildings/group_lower_2.nbt index 12b423eb..46f36e02 100644 --- a/data/minecraft/structure/trail_ruins/buildings/group_lower_2.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/group_lower_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e161488ade81e5a9a276bcfff0ef8a7ff90a2d222549da84e178c737ebaa91c4 -size 1043 +oid sha256:7f8417330dacaa0ba301ce79bf7447fc1d12662e361c3c38c81f660631028a36 +size 1042 diff --git a/data/minecraft/structure/trail_ruins/buildings/group_lower_3.nbt b/data/minecraft/structure/trail_ruins/buildings/group_lower_3.nbt index 6aaf641c..a57a0ae3 100644 --- a/data/minecraft/structure/trail_ruins/buildings/group_lower_3.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/group_lower_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5ac1df822f9015854d80689b59e3f2ec5d7f86c710bf0caf41aa7e9810b721ac -size 1046 +oid sha256:b23a811f4d439141d066eaf04b56caa6505173ce435d7708b4e29334b1cd7f79 +size 1045 diff --git a/data/minecraft/structure/trail_ruins/buildings/group_lower_4.nbt b/data/minecraft/structure/trail_ruins/buildings/group_lower_4.nbt index 5e48919f..d4fa91b3 100644 --- a/data/minecraft/structure/trail_ruins/buildings/group_lower_4.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/group_lower_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b6941b2678ca6bdbdc62fc413fda1e89e88011e80adf8d970bc122485ae4f710 -size 974 +oid sha256:e1e42b1d94f8685d147c755802b8e9463168697a111771e641bdad44d37f7504 +size 973 diff --git a/data/minecraft/structure/trail_ruins/buildings/group_lower_5.nbt b/data/minecraft/structure/trail_ruins/buildings/group_lower_5.nbt index 4001f72b..5426b1ee 100644 --- a/data/minecraft/structure/trail_ruins/buildings/group_lower_5.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/group_lower_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:285896454acb0a8ca4a4e45ecf3547f4bceec7c000083105c43cbb8c0b7d93d4 -size 972 +oid sha256:e261e279135dc6366111425d6e0ab53b91bb636c03431b9ac63683e8de815510 +size 971 diff --git a/data/minecraft/structure/trail_ruins/buildings/group_room_1.nbt b/data/minecraft/structure/trail_ruins/buildings/group_room_1.nbt index a7030a08..1b8c4880 100644 --- a/data/minecraft/structure/trail_ruins/buildings/group_room_1.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/group_room_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b01a43617b2862154d344987827accf5d4ac9e91df6ab49f4e30afafa855f642 -size 780 +oid sha256:25092ff0b8fa06f883c8feb3c5d53e60148c47420104a518ed7acb3d1d1d6406 +size 779 diff --git a/data/minecraft/structure/trail_ruins/buildings/group_room_2.nbt b/data/minecraft/structure/trail_ruins/buildings/group_room_2.nbt index 63718adb..e5d06dd4 100644 --- a/data/minecraft/structure/trail_ruins/buildings/group_room_2.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/group_room_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cac58e3a689a4933b21b98af71ad76ca36e2cbd9ba01a0fc4fb7e94fcd1b3f69 -size 863 +oid sha256:098ce27e275fbcf503e183b8b28a6cc5f7d0f8bf6fdaaaa08a6b06b9da1a695a +size 862 diff --git a/data/minecraft/structure/trail_ruins/buildings/group_room_3.nbt b/data/minecraft/structure/trail_ruins/buildings/group_room_3.nbt index 184962dd..ac0f12a9 100644 --- a/data/minecraft/structure/trail_ruins/buildings/group_room_3.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/group_room_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9794bb92108f4209f65fa195cfa21e88a12ceb82afc52426b2f36f1c184154c6 -size 847 +oid sha256:7c3e7491cdfdf9c888d8695d30b0a593dc956fd84941626416a06ea9b4c73edb +size 846 diff --git a/data/minecraft/structure/trail_ruins/buildings/group_room_4.nbt b/data/minecraft/structure/trail_ruins/buildings/group_room_4.nbt index 07b2153c..853e8c48 100644 --- a/data/minecraft/structure/trail_ruins/buildings/group_room_4.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/group_room_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3870c42bde335c2eda5e4cbd8c37d154bf091597f2e2a9231e02d7a8442d76e2 -size 780 +oid sha256:00c8b6b61739c47672f1b8d6ed63e2b8e3d3234645d21545c9dd2123af835be1 +size 779 diff --git a/data/minecraft/structure/trail_ruins/buildings/group_room_5.nbt b/data/minecraft/structure/trail_ruins/buildings/group_room_5.nbt index f88881c4..283faa93 100644 --- a/data/minecraft/structure/trail_ruins/buildings/group_room_5.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/group_room_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:48c0d98d70512d469e8afe5b9a3109be1ef4992a76f0dae8ead7e1a0ee11d4bd -size 778 +oid sha256:fd3210f0a07f7df11a7be34272a242a0ef95f858684ab8938f799b8b403b5fda +size 777 diff --git a/data/minecraft/structure/trail_ruins/buildings/group_upper_1.nbt b/data/minecraft/structure/trail_ruins/buildings/group_upper_1.nbt index c5b306fc..dd0c13ef 100644 --- a/data/minecraft/structure/trail_ruins/buildings/group_upper_1.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/group_upper_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3460f1fd6d7ebd567b53922a2573716733813a3dc644b328de18a0f3b565f174 -size 1269 +oid sha256:323b72211b3b893e2c80ea84063d3405152b1b87e93df2abbc203188022b75be +size 1268 diff --git a/data/minecraft/structure/trail_ruins/buildings/group_upper_2.nbt b/data/minecraft/structure/trail_ruins/buildings/group_upper_2.nbt index a8ffed04..d3a14364 100644 --- a/data/minecraft/structure/trail_ruins/buildings/group_upper_2.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/group_upper_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:12d020cac5565a1b8f0eab3518de7557ac4d67e6e44540342bad19e6fbd1eb2a -size 1262 +oid sha256:926118f6e729174b45ca98630df9443ca3a4570e67886a683eca52d6d8fcced3 +size 1261 diff --git a/data/minecraft/structure/trail_ruins/buildings/group_upper_3.nbt b/data/minecraft/structure/trail_ruins/buildings/group_upper_3.nbt index dd93c78e..7dc1799c 100644 --- a/data/minecraft/structure/trail_ruins/buildings/group_upper_3.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/group_upper_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c3e386aa60312ca14c03961124f2b25df2b0188d8baf367a11819f362d8ab6cc -size 1273 +oid sha256:9dc50ca1af8388983064a0c58774ce42095fdd4680f7aa2fdcb2a08b996d6c2b +size 1272 diff --git a/data/minecraft/structure/trail_ruins/buildings/group_upper_4.nbt b/data/minecraft/structure/trail_ruins/buildings/group_upper_4.nbt index 838745ee..480fd601 100644 --- a/data/minecraft/structure/trail_ruins/buildings/group_upper_4.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/group_upper_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6f8b73a9a43c96210a387b96b9a0ae3c4a274ccf1fd606e052c41a7ad8bd59d0 -size 1181 +oid sha256:d163c210a60b41b6e4f7b8908c91b609720460fdd8641e86cdf779a6da8f15b5 +size 1180 diff --git a/data/minecraft/structure/trail_ruins/buildings/group_upper_5.nbt b/data/minecraft/structure/trail_ruins/buildings/group_upper_5.nbt index c31e5d0f..c0319098 100644 --- a/data/minecraft/structure/trail_ruins/buildings/group_upper_5.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/group_upper_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c82f74da2e3715f7580ad411a6c304587826bd7ed0518adc5dc1a9c76696daa6 -size 1177 +oid sha256:2977acd224f120eb8068d74aaf2c64ee560b5cbf5c1edf4eee58082bf4300082 +size 1176 diff --git a/data/minecraft/structure/trail_ruins/buildings/large_room_1.nbt b/data/minecraft/structure/trail_ruins/buildings/large_room_1.nbt index eec2e2f5..3dcffb3c 100644 --- a/data/minecraft/structure/trail_ruins/buildings/large_room_1.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/large_room_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1c5f0631796ed844dcc3a120de76e3abd2d80092146dbd99771267dcea3032ad -size 1945 +oid sha256:68b300c8dc461c1487fbdcad77f255db2325576b6b8c90faebe9b0b7ecc7a2f0 +size 1944 diff --git a/data/minecraft/structure/trail_ruins/buildings/large_room_2.nbt b/data/minecraft/structure/trail_ruins/buildings/large_room_2.nbt index 0b5da116..b6c870cd 100644 --- a/data/minecraft/structure/trail_ruins/buildings/large_room_2.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/large_room_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7022f7b7339d133ef9c667c7f27db716aac119deee7e8ca46d033cfb4bd7268e -size 1657 +oid sha256:e4bb959a119fa701bb76a05a474c666c21c84fd9bd8e9f0be8a6f86688e2f028 +size 1656 diff --git a/data/minecraft/structure/trail_ruins/buildings/large_room_3.nbt b/data/minecraft/structure/trail_ruins/buildings/large_room_3.nbt index 4bb32432..2071b568 100644 --- a/data/minecraft/structure/trail_ruins/buildings/large_room_3.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/large_room_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:58bd8f803b2906ff8f4ce9561a72d67c4b4c6e6fbb905bbe6ad6191e8c635ec3 +oid sha256:e1bea6d3c889753d2ebbea00bc1dd80a1c6b32f53687bed4fdfafc84a1e389f0 size 2706 diff --git a/data/minecraft/structure/trail_ruins/buildings/large_room_4.nbt b/data/minecraft/structure/trail_ruins/buildings/large_room_4.nbt index 7a48fc32..5d287280 100644 --- a/data/minecraft/structure/trail_ruins/buildings/large_room_4.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/large_room_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:02ae203451824f96aa3ea05eec3435621dbbaaf3956659fa838b1b49f66a40c8 +oid sha256:f42ebf74425cc485ccc157171dc909024f0eb7c86cb1f790cc9912b176374616 size 1563 diff --git a/data/minecraft/structure/trail_ruins/buildings/large_room_5.nbt b/data/minecraft/structure/trail_ruins/buildings/large_room_5.nbt index 8b4fad9c..93de4786 100644 --- a/data/minecraft/structure/trail_ruins/buildings/large_room_5.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/large_room_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a2e5b618fd05f83b3fd6d7d3fe8a784675982d31a53358ad93ed50b409b53911 -size 3218 +oid sha256:32511898a16ec356565ac530cbedba603492fde026cddae5fe7443ac0728cd40 +size 3217 diff --git a/data/minecraft/structure/trail_ruins/buildings/one_room_1.nbt b/data/minecraft/structure/trail_ruins/buildings/one_room_1.nbt index bdad7248..77aaedf3 100644 --- a/data/minecraft/structure/trail_ruins/buildings/one_room_1.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/one_room_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a77290682b2686ae214874f1d6ac26061f17368ae76a874f08c7ae3d176515d1 -size 1004 +oid sha256:294a6100e87ce969dc9329fd9800e67934985e6a928b28128edd8395471a7619 +size 1003 diff --git a/data/minecraft/structure/trail_ruins/buildings/one_room_2.nbt b/data/minecraft/structure/trail_ruins/buildings/one_room_2.nbt index bd6ebf33..71302254 100644 --- a/data/minecraft/structure/trail_ruins/buildings/one_room_2.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/one_room_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7def33afca9755a3d063ed73cb8bb93d48dde53a9dc5f56df9fb551cf14ec5ef -size 1086 +oid sha256:094b720291d164c015eef30b890d9ef66503c9e860ff8fcd446599562d75e28a +size 1085 diff --git a/data/minecraft/structure/trail_ruins/buildings/one_room_3.nbt b/data/minecraft/structure/trail_ruins/buildings/one_room_3.nbt index f15088f8..c0c59af0 100644 --- a/data/minecraft/structure/trail_ruins/buildings/one_room_3.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/one_room_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5eac0de7c113eebe2ed3c95df0f2f966acc2ab96c2e26948b0dc3e6972485656 -size 1105 +oid sha256:098dfd7abddb453e9706812f545832b5a57372b4443ac8c7551997d503703825 +size 1104 diff --git a/data/minecraft/structure/trail_ruins/buildings/one_room_4.nbt b/data/minecraft/structure/trail_ruins/buildings/one_room_4.nbt index fcd33188..12d4eaec 100644 --- a/data/minecraft/structure/trail_ruins/buildings/one_room_4.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/one_room_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a7021159a3e94e84c894356c61c6b6d7f902df6916f9a1f75d26def9c48312a0 -size 1451 +oid sha256:9dcbde3d79d5dc766a1580688109e81280b129143fab3ed8c8bd905e786dcb9e +size 1450 diff --git a/data/minecraft/structure/trail_ruins/buildings/one_room_5.nbt b/data/minecraft/structure/trail_ruins/buildings/one_room_5.nbt index 1a8ab28e..e9f5baf7 100644 --- a/data/minecraft/structure/trail_ruins/buildings/one_room_5.nbt +++ b/data/minecraft/structure/trail_ruins/buildings/one_room_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c5edd5a699a5d65c3e1f3789ed98431b06f6e39ba81dbae6b5a8e94ea07f87b8 -size 973 +oid sha256:631b265c7e2671e79aebd8d7f58f9a9e64ff7f434e547e29be1f716eed3f611a +size 972 diff --git a/data/minecraft/structure/trail_ruins/decor/decor_1.nbt b/data/minecraft/structure/trail_ruins/decor/decor_1.nbt index c4aff50d..87174162 100644 --- a/data/minecraft/structure/trail_ruins/decor/decor_1.nbt +++ b/data/minecraft/structure/trail_ruins/decor/decor_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b27f1e53b03dd29047eb9ce2a183f14de3b2e5495ea85cb2d55bdd2182bc98ca +oid sha256:05445c8e9ce7108e44cc4c3aeee9d3b51225c609bab36dec13cce20b7219459b size 488 diff --git a/data/minecraft/structure/trail_ruins/decor/decor_2.nbt b/data/minecraft/structure/trail_ruins/decor/decor_2.nbt index 35809218..067e5e32 100644 --- a/data/minecraft/structure/trail_ruins/decor/decor_2.nbt +++ b/data/minecraft/structure/trail_ruins/decor/decor_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1cbc46eb346a0c037ed7735e90ed16f77a3a9825374ac3ca33c74c1e1c85d3a5 -size 470 +oid sha256:b95e6433f1695a8b1c671cf52f13b4713fe7917ccda2ba6932b5f2e25b2e8045 +size 469 diff --git a/data/minecraft/structure/trail_ruins/decor/decor_3.nbt b/data/minecraft/structure/trail_ruins/decor/decor_3.nbt index cdf75ac3..1d902f97 100644 --- a/data/minecraft/structure/trail_ruins/decor/decor_3.nbt +++ b/data/minecraft/structure/trail_ruins/decor/decor_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b725e844f5ecd863d8bf9b1e485732d32d44e1f4021077bbe3d417dd71f69037 -size 376 +oid sha256:ead37b3b706dae1f51248ffa7317c5278204750c412a88b9af5f1ea1c6e6df34 +size 375 diff --git a/data/minecraft/structure/trail_ruins/decor/decor_4.nbt b/data/minecraft/structure/trail_ruins/decor/decor_4.nbt index 083f994e..06c887eb 100644 --- a/data/minecraft/structure/trail_ruins/decor/decor_4.nbt +++ b/data/minecraft/structure/trail_ruins/decor/decor_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f3320ddc0b234217156a95e9e0af1a3281862569ce20fed97d13a5629b6e5a34 -size 416 +oid sha256:1517096fec067d490590e2430dfc7fa7d3d55678caa3b61acb88534d7f1645b6 +size 415 diff --git a/data/minecraft/structure/trail_ruins/decor/decor_5.nbt b/data/minecraft/structure/trail_ruins/decor/decor_5.nbt index 37b1c765..0cf3fb61 100644 --- a/data/minecraft/structure/trail_ruins/decor/decor_5.nbt +++ b/data/minecraft/structure/trail_ruins/decor/decor_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5705ebb98821203f301e1efdc73e6c170b09ce757cc9e57b37a059ca21f62c64 -size 491 +oid sha256:cf2d5dba4c9b94921b802463ca0b81a32951f537b4241113ac00da96f4b9f8d1 +size 490 diff --git a/data/minecraft/structure/trail_ruins/decor/decor_6.nbt b/data/minecraft/structure/trail_ruins/decor/decor_6.nbt index e98e2e13..39a7303d 100644 --- a/data/minecraft/structure/trail_ruins/decor/decor_6.nbt +++ b/data/minecraft/structure/trail_ruins/decor/decor_6.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6aac738a191baa21bf274eced786371e659c89f410bc767b31784063fbe5851d -size 506 +oid sha256:d46ee11ab86f39c84790f8fbb17b3e74f42d8ea0d45990ae2094facac5dc4d7f +size 505 diff --git a/data/minecraft/structure/trail_ruins/decor/decor_7.nbt b/data/minecraft/structure/trail_ruins/decor/decor_7.nbt index 474cc09d..c49f37b1 100644 --- a/data/minecraft/structure/trail_ruins/decor/decor_7.nbt +++ b/data/minecraft/structure/trail_ruins/decor/decor_7.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3c99032cf4304c9de92cb4172763c54d30f7ea9ab8e3d8ff302a08c49f63dbfe +oid sha256:e4266abce7d94fa6408b9ae87cf747c6e013881f6a52a041f1688ef7f5162c5e size 630 diff --git a/data/minecraft/structure/trail_ruins/roads/long_road_end.nbt b/data/minecraft/structure/trail_ruins/roads/long_road_end.nbt index bba2774b..1904fc0b 100644 --- a/data/minecraft/structure/trail_ruins/roads/long_road_end.nbt +++ b/data/minecraft/structure/trail_ruins/roads/long_road_end.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:585d9e7927657c9b2aab926cf4e7636a2fc5abb0e20d876cbc50317e8dd2438d -size 858 +oid sha256:d99f80bd76420f165eef9c79213fc1b5b389f58c1284bcc285718a655774ee16 +size 857 diff --git a/data/minecraft/structure/trail_ruins/roads/road_end_1.nbt b/data/minecraft/structure/trail_ruins/roads/road_end_1.nbt index 4bd9a69c..9707b199 100644 --- a/data/minecraft/structure/trail_ruins/roads/road_end_1.nbt +++ b/data/minecraft/structure/trail_ruins/roads/road_end_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cd4b4dc3ad897249f126928ff711c63ca1546dae9a926db41d24899412a7332b -size 465 +oid sha256:b2fd4447653bb8d781a83dad2f68966a8f3e24253ec728c290547554a8158c08 +size 464 diff --git a/data/minecraft/structure/trail_ruins/roads/road_section_1.nbt b/data/minecraft/structure/trail_ruins/roads/road_section_1.nbt index 1b170c1c..fccf7b2a 100644 --- a/data/minecraft/structure/trail_ruins/roads/road_section_1.nbt +++ b/data/minecraft/structure/trail_ruins/roads/road_section_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ecca491fe11938492ce90062121c049dbadb2161a76c59a0e972c8c30b0d0fb4 -size 705 +oid sha256:6243310eb5109cc317f3e7c25d293a3d5c53d966255855288b75a5abfbe2805c +size 704 diff --git a/data/minecraft/structure/trail_ruins/roads/road_section_2.nbt b/data/minecraft/structure/trail_ruins/roads/road_section_2.nbt index 15a17ee3..bba59c61 100644 --- a/data/minecraft/structure/trail_ruins/roads/road_section_2.nbt +++ b/data/minecraft/structure/trail_ruins/roads/road_section_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:878593e21b0b9f97bcc180dafbec42e3060c61e0e8dbc9e2df323823e01b7e33 -size 718 +oid sha256:9d0b99601eb38396d800a34eec1daa20ced4e1ce5f1e567ee2cab499ac916dc7 +size 717 diff --git a/data/minecraft/structure/trail_ruins/roads/road_section_3.nbt b/data/minecraft/structure/trail_ruins/roads/road_section_3.nbt index 1dcad61e..d9d91858 100644 --- a/data/minecraft/structure/trail_ruins/roads/road_section_3.nbt +++ b/data/minecraft/structure/trail_ruins/roads/road_section_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e528b5f7966897e146f9b82654fb9d190cbaa42311061ba9265c58342650272f +oid sha256:d8f824251fa26ca94aa1b4ce21440f549e160371f151095492cda81e75df1ea3 size 755 diff --git a/data/minecraft/structure/trail_ruins/roads/road_section_4.nbt b/data/minecraft/structure/trail_ruins/roads/road_section_4.nbt index 7ff96a18..33239966 100644 --- a/data/minecraft/structure/trail_ruins/roads/road_section_4.nbt +++ b/data/minecraft/structure/trail_ruins/roads/road_section_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e32301605d51f6183202ced62ef1acb469c623053e5987ab1d042c68357d5312 -size 771 +oid sha256:d00c35129ada82357dcf08609a633f6a459af4e69d56171d8114b4f8e5716c1e +size 770 diff --git a/data/minecraft/structure/trail_ruins/roads/road_spacer_1.nbt b/data/minecraft/structure/trail_ruins/roads/road_spacer_1.nbt index 3d3da32b..da3294ef 100644 --- a/data/minecraft/structure/trail_ruins/roads/road_spacer_1.nbt +++ b/data/minecraft/structure/trail_ruins/roads/road_spacer_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2991f82e845987d66ef5aa01ccd8be474d51682cd55d3377e3b11fb35e507d4a -size 643 +oid sha256:6860bf0d0f43e9bf895f3f6b8ef7e5cb80cadd79e18fbe6c9023f0e44e904e97 +size 642 diff --git a/data/minecraft/structure/trail_ruins/tower/hall_1.nbt b/data/minecraft/structure/trail_ruins/tower/hall_1.nbt index b55d90e2..6cbeed09 100644 --- a/data/minecraft/structure/trail_ruins/tower/hall_1.nbt +++ b/data/minecraft/structure/trail_ruins/tower/hall_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1d1aed4070429dc9d467df19d25ca38e9bb2016044b5f422a218935ff256fb8b -size 1518 +oid sha256:98d8a4818ccf42158e7db8e4e8cf23ab571752f0913eaa00e4c61a7c33feed8c +size 1517 diff --git a/data/minecraft/structure/trail_ruins/tower/hall_2.nbt b/data/minecraft/structure/trail_ruins/tower/hall_2.nbt index 55ee2b47..2d6655ed 100644 --- a/data/minecraft/structure/trail_ruins/tower/hall_2.nbt +++ b/data/minecraft/structure/trail_ruins/tower/hall_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9140d00ff359871649b539947330c8fd54d237989caedc46b756da74b52fa0a4 -size 1892 +oid sha256:c258dbf782e2516cb14ff121197cb32761f662195ce9286d33d10c13c57388a9 +size 1891 diff --git a/data/minecraft/structure/trail_ruins/tower/hall_3.nbt b/data/minecraft/structure/trail_ruins/tower/hall_3.nbt index 42b8f601..fb59106f 100644 --- a/data/minecraft/structure/trail_ruins/tower/hall_3.nbt +++ b/data/minecraft/structure/trail_ruins/tower/hall_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:515b594dbc1b3ec12f48a4d9d8b1eaac8c4494c3bedc8da942bf9dc6fdcc76e1 -size 2139 +oid sha256:849d90ae785e98ff6355f521f30f99f6ea53ce88d108c106be1ab67bc2ca196a +size 2138 diff --git a/data/minecraft/structure/trail_ruins/tower/hall_4.nbt b/data/minecraft/structure/trail_ruins/tower/hall_4.nbt index 27a159e7..880377a8 100644 --- a/data/minecraft/structure/trail_ruins/tower/hall_4.nbt +++ b/data/minecraft/structure/trail_ruins/tower/hall_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4026b4c3ca091c840fc93d1a95cd404b9c97a3e0e9faf17e551466908a5b0730 -size 2030 +oid sha256:1806ebfece22a01d16eba69e2c1e7d47190861ec95a325aa7b4978be7627e553 +size 2029 diff --git a/data/minecraft/structure/trail_ruins/tower/hall_5.nbt b/data/minecraft/structure/trail_ruins/tower/hall_5.nbt index 9e7dfaee..8dc6a659 100644 --- a/data/minecraft/structure/trail_ruins/tower/hall_5.nbt +++ b/data/minecraft/structure/trail_ruins/tower/hall_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8bd9ad67be1bc95a69221a033895a727b45539816145b94420805d14aadccea7 -size 1872 +oid sha256:c548b4fbe56166138790ffe2d69901598dd2a9ebc2aa48c0c4242ddead85319d +size 1871 diff --git a/data/minecraft/structure/trail_ruins/tower/large_hall_1.nbt b/data/minecraft/structure/trail_ruins/tower/large_hall_1.nbt index bb0b561f..bb06907b 100644 --- a/data/minecraft/structure/trail_ruins/tower/large_hall_1.nbt +++ b/data/minecraft/structure/trail_ruins/tower/large_hall_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:730c3c90697151366ba248d13cc8a6e5065752c880119f1f833ba7245202624a -size 2023 +oid sha256:a6c3d9fef5b833fa4ac7388fb5d2cc2df3994f68926df9bccd78a9c78846b697 +size 2022 diff --git a/data/minecraft/structure/trail_ruins/tower/large_hall_2.nbt b/data/minecraft/structure/trail_ruins/tower/large_hall_2.nbt index 0da34025..846d3932 100644 --- a/data/minecraft/structure/trail_ruins/tower/large_hall_2.nbt +++ b/data/minecraft/structure/trail_ruins/tower/large_hall_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2ac0ba0f873f0a7fe9352e806828382e2a0fe178ffc66dedf6534381c9afa33d -size 1965 +oid sha256:7773d98167c331fb5d6487c03511137724becb9b7912e9b46953a12b3afaa51e +size 1964 diff --git a/data/minecraft/structure/trail_ruins/tower/large_hall_3.nbt b/data/minecraft/structure/trail_ruins/tower/large_hall_3.nbt index aec421f1..8242d509 100644 --- a/data/minecraft/structure/trail_ruins/tower/large_hall_3.nbt +++ b/data/minecraft/structure/trail_ruins/tower/large_hall_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:59e12f2d4632ef4d136a22513cd74b046b6c8e44254ae4b848d68c0e0663c9ef -size 2023 +oid sha256:0f224b81f70caf0536adfd81d0766b9d9a2d10001dfd26b376476f573b54b6ab +size 2022 diff --git a/data/minecraft/structure/trail_ruins/tower/large_hall_4.nbt b/data/minecraft/structure/trail_ruins/tower/large_hall_4.nbt index 2d38ff0f..41499c2e 100644 --- a/data/minecraft/structure/trail_ruins/tower/large_hall_4.nbt +++ b/data/minecraft/structure/trail_ruins/tower/large_hall_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:06e363e5a6deec50e731bcbc783838a2ef21fde0bbc9cb6223374589ecaf493b -size 1807 +oid sha256:8db6c6158be7a2d5335fa0a8d87ba97376a7b98ca57a1f2a47189eb68aaa58aa +size 1806 diff --git a/data/minecraft/structure/trail_ruins/tower/large_hall_5.nbt b/data/minecraft/structure/trail_ruins/tower/large_hall_5.nbt index 6f995d60..41f79e7c 100644 --- a/data/minecraft/structure/trail_ruins/tower/large_hall_5.nbt +++ b/data/minecraft/structure/trail_ruins/tower/large_hall_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a30860bf0a3e8426eabea41ff4b4bdaed96338819614a2241c2d11a28bfba1c5 -size 2002 +oid sha256:56d04c77ebcacc28f68cfd4ed6cf858ce8462929d9781b42a4aab2299d9176b9 +size 2001 diff --git a/data/minecraft/structure/trail_ruins/tower/one_room_1.nbt b/data/minecraft/structure/trail_ruins/tower/one_room_1.nbt index 64dc4abc..5eaaf071 100644 --- a/data/minecraft/structure/trail_ruins/tower/one_room_1.nbt +++ b/data/minecraft/structure/trail_ruins/tower/one_room_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5eb1bc29e2293ce3dd2ffa0de4f384bfc94907822eda89352af17110e1441ab5 +oid sha256:785e6ae3e902f9f89cda004aacb08e92f77abf9928d48fc760e3d29e0ea9cb42 size 648 diff --git a/data/minecraft/structure/trail_ruins/tower/one_room_2.nbt b/data/minecraft/structure/trail_ruins/tower/one_room_2.nbt index dc1e82e0..41eb785b 100644 --- a/data/minecraft/structure/trail_ruins/tower/one_room_2.nbt +++ b/data/minecraft/structure/trail_ruins/tower/one_room_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:218d1cb2ce2dc52706fc9ad464c389669dbfa5180a001463e1d30daa7d6264cc -size 717 +oid sha256:3c943d23fc9b4e6dbe2cbf6109ecb7f0014fd8542e619c3047c27111ecabe3f7 +size 716 diff --git a/data/minecraft/structure/trail_ruins/tower/one_room_3.nbt b/data/minecraft/structure/trail_ruins/tower/one_room_3.nbt index 9c3f173a..ce99dfbf 100644 --- a/data/minecraft/structure/trail_ruins/tower/one_room_3.nbt +++ b/data/minecraft/structure/trail_ruins/tower/one_room_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:44a8e9c36dc8c9411b5408d23f07c3b91dc07987df74ffb772b940f3598dfcae -size 623 +oid sha256:8a09d3eae2927d2958e58b6e15adbe572a141eecf41c7a2f8881ca2d3e9bc6a6 +size 622 diff --git a/data/minecraft/structure/trail_ruins/tower/one_room_4.nbt b/data/minecraft/structure/trail_ruins/tower/one_room_4.nbt index 30ccbd32..e4816f6e 100644 --- a/data/minecraft/structure/trail_ruins/tower/one_room_4.nbt +++ b/data/minecraft/structure/trail_ruins/tower/one_room_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d2dc943181fb9aa94d64c996b199b32c4c004ea4f89aa5763026052bc87118c6 -size 614 +oid sha256:895be4485d30c28a438a920591991fcd5bb5a8250ee0d708f50a652610d51966 +size 613 diff --git a/data/minecraft/structure/trail_ruins/tower/one_room_5.nbt b/data/minecraft/structure/trail_ruins/tower/one_room_5.nbt index b666e4d8..7c6ec82e 100644 --- a/data/minecraft/structure/trail_ruins/tower/one_room_5.nbt +++ b/data/minecraft/structure/trail_ruins/tower/one_room_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:83872c9fb39e663351e07ef711b15888541a4271e1fc7030df755c5350b78eaa -size 636 +oid sha256:3cbf4a68738f9e24a0c681cc1185693ade7f01a6a77139b2feb0266ad29b9871 +size 635 diff --git a/data/minecraft/structure/trail_ruins/tower/platform_1.nbt b/data/minecraft/structure/trail_ruins/tower/platform_1.nbt index 2e90dc39..721d0436 100644 --- a/data/minecraft/structure/trail_ruins/tower/platform_1.nbt +++ b/data/minecraft/structure/trail_ruins/tower/platform_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:28a1e0b7f7627255bdde995c864cb28eb0cd4a118ae377fee966400d4d9441ad -size 1195 +oid sha256:67b82a7a5885a485591dafed35c570894b2eb616af9c77d09db283881ed92880 +size 1194 diff --git a/data/minecraft/structure/trail_ruins/tower/platform_2.nbt b/data/minecraft/structure/trail_ruins/tower/platform_2.nbt index af37bda8..8a299b7f 100644 --- a/data/minecraft/structure/trail_ruins/tower/platform_2.nbt +++ b/data/minecraft/structure/trail_ruins/tower/platform_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b1a2b80061c46860cf53ca151b68c32806289d05f856948e2d22c2a91150e387 -size 1134 +oid sha256:b1d685ee674c7a1023948d3c085d51ded06387dd8f971c6f33860b6986782824 +size 1133 diff --git a/data/minecraft/structure/trail_ruins/tower/platform_3.nbt b/data/minecraft/structure/trail_ruins/tower/platform_3.nbt index a2621ff0..51438381 100644 --- a/data/minecraft/structure/trail_ruins/tower/platform_3.nbt +++ b/data/minecraft/structure/trail_ruins/tower/platform_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d2b145fcd243bd603d17f7222ce1a2bcc712382e4d8b3d4ac3834ab8221eeeb5 -size 858 +oid sha256:54189269b4c357d04d22c94af1d76583bde0d902d0d5a6b4bdc76f32b8a483a8 +size 857 diff --git a/data/minecraft/structure/trail_ruins/tower/platform_4.nbt b/data/minecraft/structure/trail_ruins/tower/platform_4.nbt index 12676b0f..c0a04f33 100644 --- a/data/minecraft/structure/trail_ruins/tower/platform_4.nbt +++ b/data/minecraft/structure/trail_ruins/tower/platform_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a1b52cb6aa6201a7bfc4768aa37ed609b2511794383366bf34883cc8a3021be2 -size 1205 +oid sha256:ea4a953f570289633995ef2760fc150e2e70af16b4f5db39728687154038719f +size 1204 diff --git a/data/minecraft/structure/trail_ruins/tower/platform_5.nbt b/data/minecraft/structure/trail_ruins/tower/platform_5.nbt index 91299842..eeedc212 100644 --- a/data/minecraft/structure/trail_ruins/tower/platform_5.nbt +++ b/data/minecraft/structure/trail_ruins/tower/platform_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:39cc13c31690abfa3b7fbdfd50091dec323e8ff55cbd4118b89194ea884ff8e8 +oid sha256:6657a4ebbb8bd1afde37280c412ddb010922550cec62a301e2260e5e5a319753 size 1146 diff --git a/data/minecraft/structure/trail_ruins/tower/stable_1.nbt b/data/minecraft/structure/trail_ruins/tower/stable_1.nbt index 5f860a3e..aaa0135e 100644 --- a/data/minecraft/structure/trail_ruins/tower/stable_1.nbt +++ b/data/minecraft/structure/trail_ruins/tower/stable_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bfabcb9e8afe6ccf79ad9414e7c1f7490f2eec7090abfd45ea28ff94e7b2523c -size 1273 +oid sha256:6ffbe5a9849fb5fcbbf4ac8ef95d86d3ed84758ddb6943a6930010d3f103c9e4 +size 1272 diff --git a/data/minecraft/structure/trail_ruins/tower/stable_2.nbt b/data/minecraft/structure/trail_ruins/tower/stable_2.nbt index 4dcff0b0..f5484e03 100644 --- a/data/minecraft/structure/trail_ruins/tower/stable_2.nbt +++ b/data/minecraft/structure/trail_ruins/tower/stable_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d56002013c5b0e20c32fc69754e5dd0361c228e05c670752df313ba1fa331850 -size 1291 +oid sha256:2a9a7b9b631eec32fe95ffb6b4a9dd864533048eea6eb1ebff7a961713d902e0 +size 1290 diff --git a/data/minecraft/structure/trail_ruins/tower/stable_3.nbt b/data/minecraft/structure/trail_ruins/tower/stable_3.nbt index 8566fba3..98d63289 100644 --- a/data/minecraft/structure/trail_ruins/tower/stable_3.nbt +++ b/data/minecraft/structure/trail_ruins/tower/stable_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d831cb8d3f7eaafb653b66eafe568ac811fc4b36f7e606d1e244a29ed0a93f4b -size 1255 +oid sha256:a6843539c610964734e2717d085b5ae42d71f5630827963ef9fcb8e71feb16b2 +size 1254 diff --git a/data/minecraft/structure/trail_ruins/tower/stable_4.nbt b/data/minecraft/structure/trail_ruins/tower/stable_4.nbt index 8bbdeaa5..3cbb01b6 100644 --- a/data/minecraft/structure/trail_ruins/tower/stable_4.nbt +++ b/data/minecraft/structure/trail_ruins/tower/stable_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8428ee593b2436cbc6a80f36a84d5046c5726fa72ff955a9eadc4afb00409d34 -size 1289 +oid sha256:407f58e6002b132215dc16314a65549b8f33f914e7a94b29b54f3520ee62b2c8 +size 1288 diff --git a/data/minecraft/structure/trail_ruins/tower/stable_5.nbt b/data/minecraft/structure/trail_ruins/tower/stable_5.nbt index c47f210f..b4529be0 100644 --- a/data/minecraft/structure/trail_ruins/tower/stable_5.nbt +++ b/data/minecraft/structure/trail_ruins/tower/stable_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:77e702c64bd02045537af97a21ebdd0ebdce15df6bb1d46f6661f7f380db2ee3 +oid sha256:0edba0d5876da87b5b9b898317ee8e8e1f1ae58a302319e50435580b3cbd40f0 size 1034 diff --git a/data/minecraft/structure/trail_ruins/tower/tower_1.nbt b/data/minecraft/structure/trail_ruins/tower/tower_1.nbt index 4fad01c8..7a6425b9 100644 --- a/data/minecraft/structure/trail_ruins/tower/tower_1.nbt +++ b/data/minecraft/structure/trail_ruins/tower/tower_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:15d8d571802b699e024dae681b1af49cce8afcbe73c3caebe9353b9484337745 -size 1584 +oid sha256:3f4b6f3d3f726bc86bde0c5bbe327d86bf26f7934a9633e23d56cd7222bbf099 +size 1583 diff --git a/data/minecraft/structure/trail_ruins/tower/tower_2.nbt b/data/minecraft/structure/trail_ruins/tower/tower_2.nbt index adfb2335..e3645d80 100644 --- a/data/minecraft/structure/trail_ruins/tower/tower_2.nbt +++ b/data/minecraft/structure/trail_ruins/tower/tower_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:06cfec7aa606d5f7893e00ff5ef4aef8fefefe49aea27972e280ff0b3c7e1e9d -size 1617 +oid sha256:0a896dc1e24d0f6456a41a5c117f31c1417e4426803da125d5808a333342bda2 +size 1615 diff --git a/data/minecraft/structure/trail_ruins/tower/tower_3.nbt b/data/minecraft/structure/trail_ruins/tower/tower_3.nbt index fd275a36..3b9c921c 100644 --- a/data/minecraft/structure/trail_ruins/tower/tower_3.nbt +++ b/data/minecraft/structure/trail_ruins/tower/tower_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:89f240ab05b517ef4e182eaaf6a507b6fe1957a9bb841628432151b51707743c -size 2228 +oid sha256:0b87a5f63ff5173ea0174eb7614238dac1de63dfefc09c593acf3685015bfab9 +size 2227 diff --git a/data/minecraft/structure/trail_ruins/tower/tower_4.nbt b/data/minecraft/structure/trail_ruins/tower/tower_4.nbt index 2b973ec0..765f736b 100644 --- a/data/minecraft/structure/trail_ruins/tower/tower_4.nbt +++ b/data/minecraft/structure/trail_ruins/tower/tower_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bc8cba36c0f66599981a9a7aa0992b61619b3912498f6b661cbaa21c533305af -size 2089 +oid sha256:d9399f32452eb23936386ffbe0098c066b899cf565a47310a1c250c9390a3bdf +size 2088 diff --git a/data/minecraft/structure/trail_ruins/tower/tower_5.nbt b/data/minecraft/structure/trail_ruins/tower/tower_5.nbt index bf2e2031..192c7795 100644 --- a/data/minecraft/structure/trail_ruins/tower/tower_5.nbt +++ b/data/minecraft/structure/trail_ruins/tower/tower_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c5a43e953c78d06193762a4aa154a037ebdd81337a09b455072993ab0f98a613 -size 2061 +oid sha256:6fcc0a27f7e62bdbb70135a606787f184727b39654fb13ea1fc2c2d8ed79c8d1 +size 2060 diff --git a/data/minecraft/structure/trail_ruins/tower/tower_top_1.nbt b/data/minecraft/structure/trail_ruins/tower/tower_top_1.nbt index 6d17c9d3..f57d0df7 100644 --- a/data/minecraft/structure/trail_ruins/tower/tower_top_1.nbt +++ b/data/minecraft/structure/trail_ruins/tower/tower_top_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bba78bd4b3587d822d0d91b4049e3fdb6a2b75d294fd2af65c1869768855e4b3 +oid sha256:f6f1c7de6dc4404a492198675123e6ff337d3f182a7f205eb52495cd6c0afc85 size 504 diff --git a/data/minecraft/structure/trail_ruins/tower/tower_top_2.nbt b/data/minecraft/structure/trail_ruins/tower/tower_top_2.nbt index 7e3350bc..1381e353 100644 --- a/data/minecraft/structure/trail_ruins/tower/tower_top_2.nbt +++ b/data/minecraft/structure/trail_ruins/tower/tower_top_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:965c4ba3b9ac7ae6b041307874d19d58f49f186a9f2f9fdb6155b041f1a6f599 -size 521 +oid sha256:7e2a7c1110bf9daf3e4e983fdccad6302ed87782a5fbe4971ad54d89af658081 +size 520 diff --git a/data/minecraft/structure/trail_ruins/tower/tower_top_3.nbt b/data/minecraft/structure/trail_ruins/tower/tower_top_3.nbt index 9baf0c8f..be4cf613 100644 --- a/data/minecraft/structure/trail_ruins/tower/tower_top_3.nbt +++ b/data/minecraft/structure/trail_ruins/tower/tower_top_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:01f60ffb6ef69be3750e848194e63474eb92d7e37b8478afc4ca24ddcbb3528f -size 500 +oid sha256:38b08d3296a330741b95fcaed87b98057270bc697357f24a7f10a35df999286a +size 499 diff --git a/data/minecraft/structure/trail_ruins/tower/tower_top_4.nbt b/data/minecraft/structure/trail_ruins/tower/tower_top_4.nbt index c432cb37..78d8a603 100644 --- a/data/minecraft/structure/trail_ruins/tower/tower_top_4.nbt +++ b/data/minecraft/structure/trail_ruins/tower/tower_top_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:71687a70cad69cbdc0f24db2e48d014a387b14057fd05c3d3db7c7757ecb4dfc -size 480 +oid sha256:f5464cb23e1707d4a0ee04617f6359ad5dc7c60fb9f71a4b675ef24a05e4f84c +size 479 diff --git a/data/minecraft/structure/trail_ruins/tower/tower_top_5.nbt b/data/minecraft/structure/trail_ruins/tower/tower_top_5.nbt index 77912c5c..9bce7805 100644 --- a/data/minecraft/structure/trail_ruins/tower/tower_top_5.nbt +++ b/data/minecraft/structure/trail_ruins/tower/tower_top_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5b62193db01c99aa70f1c9c331c969b88fa461e803d94876e6d687788bf431cb +oid sha256:60c092affb98b52b1ae9dfcf38dddcdf62f7f13e5ba7760d037337a5005e019d size 405 diff --git a/data/minecraft/structure/trial_chambers/chamber/addon/c1_breeze.nbt b/data/minecraft/structure/trial_chambers/chamber/addon/c1_breeze.nbt index d04fb237..dbaa883d 100644 --- a/data/minecraft/structure/trial_chambers/chamber/addon/c1_breeze.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/addon/c1_breeze.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1630df5d599515c5ec714bb90400c06d6f643daee3a353f71229397bb6ae9073 -size 1694 +oid sha256:4bc1e8b25be1fe280dda5deeb0252b7c1f6a84260ec74d1c307a02eab30aa38a +size 1693 diff --git a/data/minecraft/structure/trial_chambers/chamber/addon/full_corner_column.nbt b/data/minecraft/structure/trial_chambers/chamber/addon/full_corner_column.nbt index 38376282..0af7c5d0 100644 --- a/data/minecraft/structure/trial_chambers/chamber/addon/full_corner_column.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/addon/full_corner_column.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:15491134e9587f28c8bd122f88152c6625c46794c9f8f616b7cc4e0ae7b0b1ee -size 4157 +oid sha256:159d3e9d78dd91ccaed9d791972d65c57a7a9fbae87416254542d15cb76577e7 +size 4156 diff --git a/data/minecraft/structure/trial_chambers/chamber/addon/full_stacked_walkway.nbt b/data/minecraft/structure/trial_chambers/chamber/addon/full_stacked_walkway.nbt index dfde2db1..2caaef8f 100644 --- a/data/minecraft/structure/trial_chambers/chamber/addon/full_stacked_walkway.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/addon/full_stacked_walkway.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3864c7c53c76a8a5cc4aa9a13ce79a1e462ef0440f9d647468b367a8c7b8c59c -size 4336 +oid sha256:97c5f57a929fcf147675aefca97f1e0a5d4416859daf6ab9567766f592cb2e25 +size 4335 diff --git a/data/minecraft/structure/trial_chambers/chamber/addon/full_stacked_walkway_2.nbt b/data/minecraft/structure/trial_chambers/chamber/addon/full_stacked_walkway_2.nbt index 78bc3e4c..e9277552 100644 --- a/data/minecraft/structure/trial_chambers/chamber/addon/full_stacked_walkway_2.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/addon/full_stacked_walkway_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:05954f36d5ee4ba49b1ff5fa39107f8d00a52d7f75d020473ea17c9f1743223f -size 4280 +oid sha256:74558c85adfd9209177eaef8fe6e688628fc1268bd2b0cddef3c2c700a0cebf0 +size 4278 diff --git a/data/minecraft/structure/trial_chambers/chamber/addon/grate_bridge.nbt b/data/minecraft/structure/trial_chambers/chamber/addon/grate_bridge.nbt index 6a0e4443..d8230364 100644 --- a/data/minecraft/structure/trial_chambers/chamber/addon/grate_bridge.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/addon/grate_bridge.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:013d8769aa821b7e67ef66d0e1fb4f86fb26574ad54cb6b62cf7ca4f997b7e0a -size 1753 +oid sha256:31c8d12fe7b3208782e708362af79969f6b35230a34aac54eeafa0ac2107f18f +size 1752 diff --git a/data/minecraft/structure/trial_chambers/chamber/addon/hanging_platform.nbt b/data/minecraft/structure/trial_chambers/chamber/addon/hanging_platform.nbt index 342b0cf5..ff2da6c9 100644 --- a/data/minecraft/structure/trial_chambers/chamber/addon/hanging_platform.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/addon/hanging_platform.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c0b93ca01917856a2fc14efa7e8e8fd65e4d6c11b8ba7dfe5b0b9f4dd53538e3 +oid sha256:b069e076778abdda040a48b021f0f388c0ad0103608b5e16d7e65aab41d87cb5 size 487 diff --git a/data/minecraft/structure/trial_chambers/chamber/addon/lower_staircase_down.nbt b/data/minecraft/structure/trial_chambers/chamber/addon/lower_staircase_down.nbt index 24f1c9a3..822c80be 100644 --- a/data/minecraft/structure/trial_chambers/chamber/addon/lower_staircase_down.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/addon/lower_staircase_down.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7f40078a1325fccae7791415fba61b57fcaf3b0251ab2e082e6a85f727e70226 -size 428 +oid sha256:67e80edf1e4244a9986793b1fd06afb9b8ba2aa088c513518fb5493250de8a5a +size 427 diff --git a/data/minecraft/structure/trial_chambers/chamber/addon/short_grate_platform.nbt b/data/minecraft/structure/trial_chambers/chamber/addon/short_grate_platform.nbt index 6aa71785..2e85c34c 100644 --- a/data/minecraft/structure/trial_chambers/chamber/addon/short_grate_platform.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/addon/short_grate_platform.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:74f1ff6daf01d09a9d49c6f927e784bf6d88f3ef2ad2607f7db55117fc615eb8 +oid sha256:d42c6e5a52e951f0dd737563c5703c6106e14685e2da5a0bd5761f7acad0b486 size 799 diff --git a/data/minecraft/structure/trial_chambers/chamber/addon/short_platform.nbt b/data/minecraft/structure/trial_chambers/chamber/addon/short_platform.nbt index 8f1cbe85..31618de3 100644 --- a/data/minecraft/structure/trial_chambers/chamber/addon/short_platform.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/addon/short_platform.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cc272dbb01cda7af4f2e2104294332eb290f6e4e932799eb9502f5f7796ea8f6 -size 584 +oid sha256:1a6a158459709c0a485fc65f22ce64b97d0cef8b21793d7e38a0a9620ffa950a +size 583 diff --git a/data/minecraft/structure/trial_chambers/chamber/addon/walkway_with_bridge_1.nbt b/data/minecraft/structure/trial_chambers/chamber/addon/walkway_with_bridge_1.nbt index a39f5592..dcb449d7 100644 --- a/data/minecraft/structure/trial_chambers/chamber/addon/walkway_with_bridge_1.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/addon/walkway_with_bridge_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a49a9896760c9d5722381d86f80cebb50b7ad400ad0b3577b63419a1c37bc4e3 +oid sha256:57e6e0f74f6e850d7ffd3568abf0f35df3b38ef6b846efd67a67f428f8cdeeda size 6220 diff --git a/data/minecraft/structure/trial_chambers/chamber/assembly.nbt b/data/minecraft/structure/trial_chambers/chamber/assembly.nbt index 383c21fc..3ed6de24 100644 --- a/data/minecraft/structure/trial_chambers/chamber/assembly.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/assembly.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:42d8e367696c5e911d613b9bfb8fc56d23dea3b775fd8832c8e4098e09413c2d -size 54407 +oid sha256:8f2fda0acee28a8c9fceaff860f942931beb32e41620205010789b5d7ed985ff +size 54406 diff --git a/data/minecraft/structure/trial_chambers/chamber/assembly/cover_1.nbt b/data/minecraft/structure/trial_chambers/chamber/assembly/cover_1.nbt index cbdad26c..03f290f5 100644 --- a/data/minecraft/structure/trial_chambers/chamber/assembly/cover_1.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/assembly/cover_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:efae318b4bf32102ee64ed73b1fc7ee329996764177ff8d3eec0d7a119844f0c -size 956 +oid sha256:8b8c8c93146fd411459c85f94f49daa8a34f8070a29cd88eccd4c8fdcee2e9ee +size 955 diff --git a/data/minecraft/structure/trial_chambers/chamber/assembly/cover_2.nbt b/data/minecraft/structure/trial_chambers/chamber/assembly/cover_2.nbt index 4d7545ad..3ff8668f 100644 --- a/data/minecraft/structure/trial_chambers/chamber/assembly/cover_2.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/assembly/cover_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a1975e482f46a273f2a3ce8e421e7be9125c2eb4ec6db17eb65ee09fd3f220af -size 949 +oid sha256:b5c272f02b78f85d78aff6052c4716fc56a04b9e4007956741b3686c01a33dbf +size 948 diff --git a/data/minecraft/structure/trial_chambers/chamber/assembly/cover_3.nbt b/data/minecraft/structure/trial_chambers/chamber/assembly/cover_3.nbt index 3254456d..e2906877 100644 --- a/data/minecraft/structure/trial_chambers/chamber/assembly/cover_3.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/assembly/cover_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3146f1c0974d323e3f3f5da98fc786b228ff4d6fff0706540e2664fece75c5dc -size 956 +oid sha256:1fa7f945a65a5cf8555fb9dd4ef2f82be4cb205460aa075389953544e7ca23fd +size 955 diff --git a/data/minecraft/structure/trial_chambers/chamber/assembly/cover_4.nbt b/data/minecraft/structure/trial_chambers/chamber/assembly/cover_4.nbt index 73c2818e..a3af4701 100644 --- a/data/minecraft/structure/trial_chambers/chamber/assembly/cover_4.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/assembly/cover_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9f4517f992d7969c5757955c434f7ad658a7bacdb602cff7a12507cba6ea8c19 -size 952 +oid sha256:f0f8c08a34d28ed2f978efeb57453bce3e774c9d52db3c54654a61427997353a +size 951 diff --git a/data/minecraft/structure/trial_chambers/chamber/assembly/cover_5.nbt b/data/minecraft/structure/trial_chambers/chamber/assembly/cover_5.nbt index 65dd0b5f..e6f2a151 100644 --- a/data/minecraft/structure/trial_chambers/chamber/assembly/cover_5.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/assembly/cover_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:599611e2f6d54879888ba8f4f687915527a4a0d9d639f893dce8f5ca2db02c34 -size 1024 +oid sha256:15a0e9d96634a9a6c3e7c35a9e1a551bf1971916fa48746eb3f570162109f0aa +size 1023 diff --git a/data/minecraft/structure/trial_chambers/chamber/assembly/cover_6.nbt b/data/minecraft/structure/trial_chambers/chamber/assembly/cover_6.nbt index dc9dc5b8..a0b6c80e 100644 --- a/data/minecraft/structure/trial_chambers/chamber/assembly/cover_6.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/assembly/cover_6.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d393f744a9fa16c0ba4d1c6a229c0aab4aab5aee1b2643bca619e0ffb0342274 -size 1021 +oid sha256:031ec4637f0cc34f0f1ca098868686458943ea821da2729564c3fad38658244f +size 1020 diff --git a/data/minecraft/structure/trial_chambers/chamber/assembly/cover_7.nbt b/data/minecraft/structure/trial_chambers/chamber/assembly/cover_7.nbt index 9ed6fdf3..7fe582f9 100644 --- a/data/minecraft/structure/trial_chambers/chamber/assembly/cover_7.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/assembly/cover_7.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a86e1d6e3955c728a0a11936eee4c391b9bb4ce38f45a65d3343f687e7012956 +oid sha256:3603235c4f77dd01cb4055fff2292e34cf8e140add687c40ed24de5d51d89ab5 size 754 diff --git a/data/minecraft/structure/trial_chambers/chamber/assembly/full_column.nbt b/data/minecraft/structure/trial_chambers/chamber/assembly/full_column.nbt index a5e588a1..939832ef 100644 --- a/data/minecraft/structure/trial_chambers/chamber/assembly/full_column.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/assembly/full_column.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:74e85f053af390ba548d6c8b4eaff696adf5183b427ec255302b79f6a7736d0e +oid sha256:63ae98de83d4c558d1f11ccd142ccc55ebaa4406a90ed60402ee0cfa8a550f19 size 660 diff --git a/data/minecraft/structure/trial_chambers/chamber/assembly/hanging_1.nbt b/data/minecraft/structure/trial_chambers/chamber/assembly/hanging_1.nbt index 7bf6de67..29936fce 100644 --- a/data/minecraft/structure/trial_chambers/chamber/assembly/hanging_1.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/assembly/hanging_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:200214127a9939985f07a5c4621bd6d1d8459a6c19a1ca30bbef6490c0d353cf -size 586 +oid sha256:d922c4ee8fe2ba076597e9aa5da66b0fa58c54ff7a0aab0fc0ab1b157b8f9b41 +size 585 diff --git a/data/minecraft/structure/trial_chambers/chamber/assembly/hanging_2.nbt b/data/minecraft/structure/trial_chambers/chamber/assembly/hanging_2.nbt index 5c3c2659..1157ee54 100644 --- a/data/minecraft/structure/trial_chambers/chamber/assembly/hanging_2.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/assembly/hanging_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dd6c95485be2d97ca6ef6e23392de7ac1c37a2d31993d81683a0db4edef1d6df -size 868 +oid sha256:34b55a963ab885852d2dc519b13f9f730a1d45958ac3dcf4788bd2cde4679c42 +size 867 diff --git a/data/minecraft/structure/trial_chambers/chamber/assembly/hanging_3.nbt b/data/minecraft/structure/trial_chambers/chamber/assembly/hanging_3.nbt index 19826998..b8f484ec 100644 --- a/data/minecraft/structure/trial_chambers/chamber/assembly/hanging_3.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/assembly/hanging_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3d3844fc771508247be738e1ec2135efaa7ca2390e090d8f6e5e6e739cd51bc9 -size 536 +oid sha256:4e47e9b8ddda09a578afa3103d2cf1a0beae7331b449e54eac33358c78fc3753 +size 535 diff --git a/data/minecraft/structure/trial_chambers/chamber/assembly/hanging_4.nbt b/data/minecraft/structure/trial_chambers/chamber/assembly/hanging_4.nbt index 7e7ee52e..d21ae86e 100644 --- a/data/minecraft/structure/trial_chambers/chamber/assembly/hanging_4.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/assembly/hanging_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ac046c19bfd0aa9f7f239590faf935218cad5caa7df33a92de5c820c861afff9 -size 638 +oid sha256:f6733b9b859836b534be7e2cc6eba4a6c4156687733cea3036e842d6ee17fe5e +size 637 diff --git a/data/minecraft/structure/trial_chambers/chamber/assembly/hanging_5.nbt b/data/minecraft/structure/trial_chambers/chamber/assembly/hanging_5.nbt index 7780f532..b1856126 100644 --- a/data/minecraft/structure/trial_chambers/chamber/assembly/hanging_5.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/assembly/hanging_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8564c2f5086763294b7407ce3282d61691c73b881ad8d6ce7c2ff8ddd960c4fe -size 339 +oid sha256:a0027f9f5b124a3df89ae6d6f243f9d000bada2dbce846237479fdae60252f07 +size 338 diff --git a/data/minecraft/structure/trial_chambers/chamber/assembly/left_staircase_1.nbt b/data/minecraft/structure/trial_chambers/chamber/assembly/left_staircase_1.nbt index 1459389d..f18123b6 100644 --- a/data/minecraft/structure/trial_chambers/chamber/assembly/left_staircase_1.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/assembly/left_staircase_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:09055c6ad26d65b71cbb6887fe240cc21e2cf8212ba13286f67b9be67321ae44 -size 2461 +oid sha256:4cc02a64fa3c267e99fc8b2501531352162a579cbcfecb7d6634c905c0cf1e61 +size 2460 diff --git a/data/minecraft/structure/trial_chambers/chamber/assembly/left_staircase_2.nbt b/data/minecraft/structure/trial_chambers/chamber/assembly/left_staircase_2.nbt index ed8da45e..95ed7959 100644 --- a/data/minecraft/structure/trial_chambers/chamber/assembly/left_staircase_2.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/assembly/left_staircase_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:965e6f90b8d0ed1a0a84dcd0f47e76635c6349d74a977a53892b7a481c4b6952 -size 2494 +oid sha256:23f001deefe778cb0567795a88b21a26193af5a5d9d44c8db41585186eadc2f8 +size 2492 diff --git a/data/minecraft/structure/trial_chambers/chamber/assembly/left_staircase_3.nbt b/data/minecraft/structure/trial_chambers/chamber/assembly/left_staircase_3.nbt index 7c710b8d..9a966974 100644 --- a/data/minecraft/structure/trial_chambers/chamber/assembly/left_staircase_3.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/assembly/left_staircase_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1320110b39f43dbb66b13c6bba3d6e441c7cf82913a96e21dcd75dc4ae90b621 -size 2510 +oid sha256:28f9a051e0b8866b7a806df98b9ba525d57fb2e18ffe537abb70fa791bb8f2d5 +size 2509 diff --git a/data/minecraft/structure/trial_chambers/chamber/assembly/platform_1.nbt b/data/minecraft/structure/trial_chambers/chamber/assembly/platform_1.nbt index cb3befa8..c41216eb 100644 --- a/data/minecraft/structure/trial_chambers/chamber/assembly/platform_1.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/assembly/platform_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:70bdd87ab8a3ac2ebf9ed4974758d5507e963255e2ff1ee57e6729ddabf2f23c -size 472 +oid sha256:85322688da8924c8f24d558bc4fca7574790e4250e515579bec0632f7d9a846c +size 471 diff --git a/data/minecraft/structure/trial_chambers/chamber/assembly/right_staircase_1.nbt b/data/minecraft/structure/trial_chambers/chamber/assembly/right_staircase_1.nbt index 896737de..1f42baa4 100644 --- a/data/minecraft/structure/trial_chambers/chamber/assembly/right_staircase_1.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/assembly/right_staircase_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a980079b76e33b9c3fcb7d210236651e402806d00691c0b7d6ebc263dc5c3a52 -size 2423 +oid sha256:b7da580928ff846ab75205ffabe6f6e6549c86e11a0e24331d654d48107476c0 +size 2422 diff --git a/data/minecraft/structure/trial_chambers/chamber/assembly/right_staircase_2.nbt b/data/minecraft/structure/trial_chambers/chamber/assembly/right_staircase_2.nbt index a267a22b..68abe34d 100644 --- a/data/minecraft/structure/trial_chambers/chamber/assembly/right_staircase_2.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/assembly/right_staircase_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7e95ccfdb64023dbc067480119dca00c7c01d81acc72bf8b1ab20f058dc5e632 -size 2550 +oid sha256:982a9ea5363d11164170ac1daa474925c1d9b49a1264148ff3abec531a1bd9b9 +size 2549 diff --git a/data/minecraft/structure/trial_chambers/chamber/assembly/right_staircase_3.nbt b/data/minecraft/structure/trial_chambers/chamber/assembly/right_staircase_3.nbt index f04f1fb1..975ed102 100644 --- a/data/minecraft/structure/trial_chambers/chamber/assembly/right_staircase_3.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/assembly/right_staircase_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:99ea7ed72e320f82bf721da0c07bed95150501a54742cf9d1961f7c33ec7d973 -size 2557 +oid sha256:321651648881dd5a964a797f9bc1a15ff306c38e715fa509c5660c1b4ab7170a +size 2556 diff --git a/data/minecraft/structure/trial_chambers/chamber/assembly/spawner_1.nbt b/data/minecraft/structure/trial_chambers/chamber/assembly/spawner_1.nbt index 7cbdd459..d93484fe 100644 --- a/data/minecraft/structure/trial_chambers/chamber/assembly/spawner_1.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/assembly/spawner_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e935e1836f3d60cdfa4b35688a0aac83d4a6c03a79aaaa08d693c49787a5a733 -size 918 +oid sha256:f1bb81cec26fb20867451944e638ea515e0fe5bb65c49548389d71dc6fc53033 +size 915 diff --git a/data/minecraft/structure/trial_chambers/chamber/chamber_1.nbt b/data/minecraft/structure/trial_chambers/chamber/chamber_1.nbt index b4e5f2d0..410c646e 100644 --- a/data/minecraft/structure/trial_chambers/chamber/chamber_1.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/chamber_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5db6f38018d2de2b0c2bca4317543e383d74e6a2ba79235e1cbeecf2472877c3 -size 38588 +oid sha256:d3b5ce1486449164aa241244784ceb917ad9995210c3b96434c23d4b44c0d447 +size 38587 diff --git a/data/minecraft/structure/trial_chambers/chamber/chamber_2.nbt b/data/minecraft/structure/trial_chambers/chamber/chamber_2.nbt index ed9db5a2..51017d0c 100644 --- a/data/minecraft/structure/trial_chambers/chamber/chamber_2.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/chamber_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cffa694ee29a00093768e135bbe5d47b361a63839e330c2adb24f14d09e35f31 -size 38937 +oid sha256:ca8b974bcb271f54639dfa263d28355ee83e7ce246b58c058304d02b280f5567 +size 38936 diff --git a/data/minecraft/structure/trial_chambers/chamber/chamber_4.nbt b/data/minecraft/structure/trial_chambers/chamber/chamber_4.nbt index be01cf24..26599b59 100644 --- a/data/minecraft/structure/trial_chambers/chamber/chamber_4.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/chamber_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cae48b1fbe87d9b1eac8b3158860c334ddea2542da88e6701d09046d1f24c62a -size 24478 +oid sha256:7693f7ffbafdcb0c357ae40f21847d51e604f8c0cc5f85c206daabc50be22cc8 +size 24477 diff --git a/data/minecraft/structure/trial_chambers/chamber/chamber_8.nbt b/data/minecraft/structure/trial_chambers/chamber/chamber_8.nbt index fd6bb981..67f81698 100644 --- a/data/minecraft/structure/trial_chambers/chamber/chamber_8.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/chamber_8.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:160a566fb01c0dd0f57de1ebb3c16cf92aab4d037a0b0cfde5b4ec0390235769 -size 19203 +oid sha256:e0ab38426f3babb33d017e8a99fb512864f0aa4494d58dbba9a49ab84c2a5d80 +size 19204 diff --git a/data/minecraft/structure/trial_chambers/chamber/entrance_cap.nbt b/data/minecraft/structure/trial_chambers/chamber/entrance_cap.nbt index 74fcb187..341ce179 100644 --- a/data/minecraft/structure/trial_chambers/chamber/entrance_cap.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/entrance_cap.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2439b5921cc5319b1c30b544d7e23de34b031e13fd9faa04d5096df64b505648 -size 383 +oid sha256:fff842c2db7b3110d5edb0b0cae16a386c97f3fdf5971ba9e58b79a6cb84af63 +size 382 diff --git a/data/minecraft/structure/trial_chambers/chamber/eruption.nbt b/data/minecraft/structure/trial_chambers/chamber/eruption.nbt index 027180d3..423ab9b1 100644 --- a/data/minecraft/structure/trial_chambers/chamber/eruption.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/eruption.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9af92b251983a57d8590be97913b9f073ff476633091e858d5eb1cd8ffe8f838 -size 31896 +oid sha256:3bfa0c82abf4a615380888a863c66fb109fac17575694620f4566d220e7d02c8 +size 31895 diff --git a/data/minecraft/structure/trial_chambers/chamber/eruption/breeze_slice_1.nbt b/data/minecraft/structure/trial_chambers/chamber/eruption/breeze_slice_1.nbt index 4fc8dea5..e8b604c0 100644 --- a/data/minecraft/structure/trial_chambers/chamber/eruption/breeze_slice_1.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/eruption/breeze_slice_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ba3b095130b4a8dd8137c8aaff70bb79fbf4ad2ce2b0089da1461465fa464562 -size 2593 +oid sha256:5ce70df1f651afb14bc80142f70876b6100ebcf220501baac3a9fbff679da61d +size 2592 diff --git a/data/minecraft/structure/trial_chambers/chamber/eruption/center_1.nbt b/data/minecraft/structure/trial_chambers/chamber/eruption/center_1.nbt index e8f5be80..6194b3f7 100644 --- a/data/minecraft/structure/trial_chambers/chamber/eruption/center_1.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/eruption/center_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:becf53cabc5a94e35942e092e19a14b31e53b576ade49c075a43f3bc3c6a04a8 -size 1536 +oid sha256:e731fbdbc8121742fd2392a57c4f482d46d264ba5bbf5755bd31487a948bf8d8 +size 1535 diff --git a/data/minecraft/structure/trial_chambers/chamber/eruption/quadrant_1.nbt b/data/minecraft/structure/trial_chambers/chamber/eruption/quadrant_1.nbt index b9d46203..509b0e40 100644 --- a/data/minecraft/structure/trial_chambers/chamber/eruption/quadrant_1.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/eruption/quadrant_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:513b521060dd86c762e61c10377942ad3c36f397dc4e0e74318bb0c486303669 -size 4437 +oid sha256:93b94c1faead2fcf35fccdaffd8bc4536380bc29483726a919f56d810086c57d +size 4436 diff --git a/data/minecraft/structure/trial_chambers/chamber/eruption/quadrant_2.nbt b/data/minecraft/structure/trial_chambers/chamber/eruption/quadrant_2.nbt index ba672084..36cbcade 100644 --- a/data/minecraft/structure/trial_chambers/chamber/eruption/quadrant_2.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/eruption/quadrant_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5a74724b5250cd91a4034036ca843096d6ed65da62cbd050619a14af22a7493a -size 4601 +oid sha256:9320daa9335bcb2666fe29c88ce56d6fdb632ad04c0615d3db5168feb992ecd8 +size 4600 diff --git a/data/minecraft/structure/trial_chambers/chamber/eruption/quadrant_3.nbt b/data/minecraft/structure/trial_chambers/chamber/eruption/quadrant_3.nbt index 8eb23ecb..cbbfdba5 100644 --- a/data/minecraft/structure/trial_chambers/chamber/eruption/quadrant_3.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/eruption/quadrant_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:56370b4e7aa869c3a2d01482f73a56b87053cacead41ef9d3b4da6cea8146cd6 -size 4688 +oid sha256:4b431a87475eed2fefe0fa0f112de9666699a8c4903dabe92d6c2097846c560a +size 4681 diff --git a/data/minecraft/structure/trial_chambers/chamber/eruption/quadrant_4.nbt b/data/minecraft/structure/trial_chambers/chamber/eruption/quadrant_4.nbt index b9d99c48..aeeab15e 100644 --- a/data/minecraft/structure/trial_chambers/chamber/eruption/quadrant_4.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/eruption/quadrant_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a5f8fd928162a9805dc1d2cb9a37797d966548a434f7aab707f5f8dccc6895c0 -size 4834 +oid sha256:278b881de1e577d7dfa830fc537d10752d4910a392d3eddd81a4342176e37d77 +size 4833 diff --git a/data/minecraft/structure/trial_chambers/chamber/eruption/quadrant_5.nbt b/data/minecraft/structure/trial_chambers/chamber/eruption/quadrant_5.nbt index b436ff63..e97488f0 100644 --- a/data/minecraft/structure/trial_chambers/chamber/eruption/quadrant_5.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/eruption/quadrant_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:71779e0dce18a1231a68e681fd0547a96ec985a858998b7207dc1903da8cbae7 -size 4786 +oid sha256:2613664f9f7d3f4a9fd8837c741bf67c0b7203beaddecc6189a8f717fc8ad2e7 +size 4785 diff --git a/data/minecraft/structure/trial_chambers/chamber/eruption/slice_1.nbt b/data/minecraft/structure/trial_chambers/chamber/eruption/slice_1.nbt index c50585dc..1ed25778 100644 --- a/data/minecraft/structure/trial_chambers/chamber/eruption/slice_1.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/eruption/slice_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e35fda33e7f5d3e99c119da960d6f1946ab8de5bd138053ca6a627d5d9ab7094 -size 2505 +oid sha256:45fd128319e7300726855ac22e37e7b2c86617461b76f9f7e3bfa63b5dd19db6 +size 2504 diff --git a/data/minecraft/structure/trial_chambers/chamber/eruption/slice_2.nbt b/data/minecraft/structure/trial_chambers/chamber/eruption/slice_2.nbt index 62e2c8fb..a7aaf322 100644 --- a/data/minecraft/structure/trial_chambers/chamber/eruption/slice_2.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/eruption/slice_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:adff2cbcab3f3879099376b10eea87203f9fec392f384f3c2d7b979e4ae3ae46 -size 2482 +oid sha256:c99185f02c94dc2ff94070d252bb068be00909e32759e64fc6bf24b140d50c7d +size 2481 diff --git a/data/minecraft/structure/trial_chambers/chamber/eruption/slice_3.nbt b/data/minecraft/structure/trial_chambers/chamber/eruption/slice_3.nbt index 43675188..53c533df 100644 --- a/data/minecraft/structure/trial_chambers/chamber/eruption/slice_3.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/eruption/slice_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cfaccc1af0f31797239fa1c6012ac8ca306bb30c3acfcfc04083761f49cf7b74 -size 2475 +oid sha256:858b3355439c41b07e280c1a9f0573727a04c6ab02b9c38a0a955806dba534c2 +size 2474 diff --git a/data/minecraft/structure/trial_chambers/chamber/pedestal.nbt b/data/minecraft/structure/trial_chambers/chamber/pedestal.nbt index 12edaf13..d002ee26 100644 --- a/data/minecraft/structure/trial_chambers/chamber/pedestal.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/pedestal.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c9290a7152941545acda47fafd9b95624dea692f9eadcf0398e938c7db148967 -size 47358 +oid sha256:d448e47779f66d245ee41bb188346a7b4d9ecfd99fa9316a41a6f40665cc0210 +size 47357 diff --git a/data/minecraft/structure/trial_chambers/chamber/pedestal/center_1.nbt b/data/minecraft/structure/trial_chambers/chamber/pedestal/center_1.nbt index 51e0d191..01b1285f 100644 --- a/data/minecraft/structure/trial_chambers/chamber/pedestal/center_1.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/pedestal/center_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cf99b09e36df1664344894096946a7bfd0e04839cac4c46436aa5a694bea3ca2 -size 3677 +oid sha256:26b7e7b49cf262028f0f972e6773424d87af5cf2ccfee8384ac08b722fffb3ad +size 3676 diff --git a/data/minecraft/structure/trial_chambers/chamber/pedestal/ominous_slice_1.nbt b/data/minecraft/structure/trial_chambers/chamber/pedestal/ominous_slice_1.nbt index 18ee3544..fb3b40a2 100644 --- a/data/minecraft/structure/trial_chambers/chamber/pedestal/ominous_slice_1.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/pedestal/ominous_slice_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bcc1922c064029a1d3e5b1edd12ac070b381c9d0581687bccf4f19e79496222d +oid sha256:417393853a17a3d99fea2681dec78b03dfd8051c4e50a55c894a1897d20af84a size 1918 diff --git a/data/minecraft/structure/trial_chambers/chamber/pedestal/quadrant_1.nbt b/data/minecraft/structure/trial_chambers/chamber/pedestal/quadrant_1.nbt index 5199027f..d82194d5 100644 --- a/data/minecraft/structure/trial_chambers/chamber/pedestal/quadrant_1.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/pedestal/quadrant_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5843765acf65fd4432d0e702087d235e4a6c14d242917d8bcf3194c61b09bb78 -size 3461 +oid sha256:68f66cf4e19cd8b05d72af530b2461243af27aacd97a8e84537ae081c7b9facf +size 3460 diff --git a/data/minecraft/structure/trial_chambers/chamber/pedestal/quadrant_2.nbt b/data/minecraft/structure/trial_chambers/chamber/pedestal/quadrant_2.nbt index 572cf820..76cf6b2e 100644 --- a/data/minecraft/structure/trial_chambers/chamber/pedestal/quadrant_2.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/pedestal/quadrant_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f2e3ba4d5339a12da605330d9081042de73851a886d4d3b21f4a2fc8afa3c1c8 -size 3325 +oid sha256:453ab79eb5e163bb8210bb7b341f37915b78db0d8193951d6071bc82435db1db +size 3324 diff --git a/data/minecraft/structure/trial_chambers/chamber/pedestal/quadrant_3.nbt b/data/minecraft/structure/trial_chambers/chamber/pedestal/quadrant_3.nbt index 7edd13d6..840e7c68 100644 --- a/data/minecraft/structure/trial_chambers/chamber/pedestal/quadrant_3.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/pedestal/quadrant_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4817a2d01dc9f7bbd94b6b47a4872323e55ce59d038a46a463e2f70009b53bed -size 3909 +oid sha256:26bed27b705ec44dd205bd7bad364c583bdaf7f86f5cc59c9e82bdbb3fd6e10c +size 3908 diff --git a/data/minecraft/structure/trial_chambers/chamber/pedestal/slice_1.nbt b/data/minecraft/structure/trial_chambers/chamber/pedestal/slice_1.nbt index 407923e4..240bfa00 100644 --- a/data/minecraft/structure/trial_chambers/chamber/pedestal/slice_1.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/pedestal/slice_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2928c55198366987773e3b1ec7a139f35d9cbade0f75e2a7a2a0982dad9f8f63 -size 1922 +oid sha256:bf97f675cd61dc9ae340dc035f2cf54b992b6bbb690e049c7418a0303d69f3f3 +size 1921 diff --git a/data/minecraft/structure/trial_chambers/chamber/pedestal/slice_2.nbt b/data/minecraft/structure/trial_chambers/chamber/pedestal/slice_2.nbt index fb67afa1..cfc7338f 100644 --- a/data/minecraft/structure/trial_chambers/chamber/pedestal/slice_2.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/pedestal/slice_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b6f3f9a1b2d9a32058579bfa4f0c3e4d29b616c1c4d91360e17cae8ab1c2ac2a -size 1964 +oid sha256:92447380a1eec5861cb592f39d7834b1d33e56b148c9ba4ca566a63072407e82 +size 1963 diff --git a/data/minecraft/structure/trial_chambers/chamber/pedestal/slice_3.nbt b/data/minecraft/structure/trial_chambers/chamber/pedestal/slice_3.nbt index 212cfed3..d3115024 100644 --- a/data/minecraft/structure/trial_chambers/chamber/pedestal/slice_3.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/pedestal/slice_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8d0c3ae82ed3ba37d06552475c924806e39b5dc7f0546579f3e06608c9497d94 -size 2010 +oid sha256:0d871fe12fa6b971a56be32984a3f191dad04d3ecf1a39895d03698cb85cf2fe +size 2009 diff --git a/data/minecraft/structure/trial_chambers/chamber/pedestal/slice_4.nbt b/data/minecraft/structure/trial_chambers/chamber/pedestal/slice_4.nbt index e33b6e95..27b18ce5 100644 --- a/data/minecraft/structure/trial_chambers/chamber/pedestal/slice_4.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/pedestal/slice_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:de492e1c25276ed0a0cf6a2dc89f2137ad11f68514f11b1502e77172f7940caf -size 2018 +oid sha256:a03e9d399f2468bda1653abef3d0dc652a11b9e41cd25777ee406b936253c075 +size 2017 diff --git a/data/minecraft/structure/trial_chambers/chamber/pedestal/slice_5.nbt b/data/minecraft/structure/trial_chambers/chamber/pedestal/slice_5.nbt index 49cac230..71021172 100644 --- a/data/minecraft/structure/trial_chambers/chamber/pedestal/slice_5.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/pedestal/slice_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bbea8fe7cf7c3cdb86707450ed6f3ed6c9f48b2353851447042e7ef571d145ec -size 1970 +oid sha256:07463c1cebe18f85c69846134a3d8045ae85dd40bf48ff38f3819d85ec060e50 +size 1969 diff --git a/data/minecraft/structure/trial_chambers/chamber/slanted.nbt b/data/minecraft/structure/trial_chambers/chamber/slanted.nbt index b0cfbd93..48efbbce 100644 --- a/data/minecraft/structure/trial_chambers/chamber/slanted.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/slanted.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:32beb9f2a461df2ad3475c5cfb8a76b908b0c7c944a23125a14ac0274a3e65bd -size 34272 +oid sha256:6fb8c30b78072195f91be9c840886c910832a02a9e736684668fefe2421c6403 +size 34271 diff --git a/data/minecraft/structure/trial_chambers/chamber/slanted/center.nbt b/data/minecraft/structure/trial_chambers/chamber/slanted/center.nbt index b295199b..abe0b6df 100644 --- a/data/minecraft/structure/trial_chambers/chamber/slanted/center.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/slanted/center.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8db5417237ecdc77d7f59b090e6fd3ad0f1e0df0dab71469958ecf1a022061d1 -size 1275 +oid sha256:c94b79ef6e3cc87f9075a511677110ab32a0c49fe98d7ee860b11706e1abda13 +size 1274 diff --git a/data/minecraft/structure/trial_chambers/chamber/slanted/hallway_1.nbt b/data/minecraft/structure/trial_chambers/chamber/slanted/hallway_1.nbt index b422c1a7..c129abd2 100644 --- a/data/minecraft/structure/trial_chambers/chamber/slanted/hallway_1.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/slanted/hallway_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c48749743b18ee762a3e4315b8a0c595892cd92f21856ea7cf4931e3eabb8893 +oid sha256:597b0fdbb754bb4f497c49dcfe122efbfe65de67d314fe1f3a76d43aa54ef872 size 1007 diff --git a/data/minecraft/structure/trial_chambers/chamber/slanted/hallway_2.nbt b/data/minecraft/structure/trial_chambers/chamber/slanted/hallway_2.nbt index 3b887b04..31d46ffa 100644 --- a/data/minecraft/structure/trial_chambers/chamber/slanted/hallway_2.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/slanted/hallway_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:88e5f6469d3cd11d1135f43531bce783af6f96c5ef9fcea967f88161f075dfba +oid sha256:c5c14125ffb8cc8caa5331cd709007ac6492da8d913978e55b44e0b06357166f size 1132 diff --git a/data/minecraft/structure/trial_chambers/chamber/slanted/hallway_3.nbt b/data/minecraft/structure/trial_chambers/chamber/slanted/hallway_3.nbt index 713b628a..50f09cea 100644 --- a/data/minecraft/structure/trial_chambers/chamber/slanted/hallway_3.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/slanted/hallway_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3d63af54aec5c758528f87a4be33e55c5efc6da7504c79083d0272645bfded73 -size 1059 +oid sha256:f27e590ba5c0462e9b60adfe94fc09d290bf891b2bdd0daaaeef02c7a6cfd61e +size 1058 diff --git a/data/minecraft/structure/trial_chambers/chamber/slanted/ominous_upper_arm_1.nbt b/data/minecraft/structure/trial_chambers/chamber/slanted/ominous_upper_arm_1.nbt index 6bc0c28f..5e1c6143 100644 --- a/data/minecraft/structure/trial_chambers/chamber/slanted/ominous_upper_arm_1.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/slanted/ominous_upper_arm_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0ebb64030b54e106475975a35e11386eefa9069e9e489e94b4f9e91b117da5cd -size 1343 +oid sha256:5738cdd2d3992b26431081b2f9ccfdb0a76c17d91b81a539d261a1b6f9a4448f +size 1342 diff --git a/data/minecraft/structure/trial_chambers/chamber/slanted/quadrant_1.nbt b/data/minecraft/structure/trial_chambers/chamber/slanted/quadrant_1.nbt index e124fd39..5d9073d4 100644 --- a/data/minecraft/structure/trial_chambers/chamber/slanted/quadrant_1.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/slanted/quadrant_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ae613327b4af797249e8cb4d37797abb75e7297c6ecca071fc11991d5d789712 -size 3430 +oid sha256:a49daebcc7955994cd621bb14e745c7566a6df4ca9937a0b4534a7b6b21bcb48 +size 3429 diff --git a/data/minecraft/structure/trial_chambers/chamber/slanted/quadrant_2.nbt b/data/minecraft/structure/trial_chambers/chamber/slanted/quadrant_2.nbt index 84a51527..96f13c36 100644 --- a/data/minecraft/structure/trial_chambers/chamber/slanted/quadrant_2.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/slanted/quadrant_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:55ccccb36f8f030cf409e186a6eb5e343be0c43f5cad20e78d1fbc88b40072aa -size 3446 +oid sha256:3d1be9624eb8dda625d0263c66869d07729e2574b5b9cef83920e779443716c8 +size 3445 diff --git a/data/minecraft/structure/trial_chambers/chamber/slanted/quadrant_3.nbt b/data/minecraft/structure/trial_chambers/chamber/slanted/quadrant_3.nbt index 24df5449..d9ddd712 100644 --- a/data/minecraft/structure/trial_chambers/chamber/slanted/quadrant_3.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/slanted/quadrant_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d68ebd8f2c699d459c3126b39f37f597c665c5f0642d4ffe900c0e92f5d4faa1 -size 3436 +oid sha256:3ed9e443e238bd91980b5739b2107c6308b8aee9690a46f322985d42887bfe7f +size 3435 diff --git a/data/minecraft/structure/trial_chambers/chamber/slanted/quadrant_4.nbt b/data/minecraft/structure/trial_chambers/chamber/slanted/quadrant_4.nbt index bb44d139..9503887f 100644 --- a/data/minecraft/structure/trial_chambers/chamber/slanted/quadrant_4.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/slanted/quadrant_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f74056fb0a615ae78120b3a8d23991e6af2d2bdc49731cfca92a4b4db92811bf -size 4325 +oid sha256:f2025008e6a648999f2f33c698f8eb3af9be0cc386de184459718adf4ae3dab4 +size 4324 diff --git a/data/minecraft/structure/trial_chambers/chamber/slanted/ramp_1.nbt b/data/minecraft/structure/trial_chambers/chamber/slanted/ramp_1.nbt index 93e194e5..250dec45 100644 --- a/data/minecraft/structure/trial_chambers/chamber/slanted/ramp_1.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/slanted/ramp_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4e567faf3d24d388bde4d5ad18f6246db2b93d145a3afd1f35041f1921051002 -size 1323 +oid sha256:c64acd691e89139e497e6e48be598eaa729c8dcc35a4941f797ba815976ca140 +size 1322 diff --git a/data/minecraft/structure/trial_chambers/chamber/slanted/ramp_2.nbt b/data/minecraft/structure/trial_chambers/chamber/slanted/ramp_2.nbt index 6b772546..5261386e 100644 --- a/data/minecraft/structure/trial_chambers/chamber/slanted/ramp_2.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/slanted/ramp_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:67c16ac165fbbade4ca7075ec7fca010619368923adbdb1cc3f7eb76552dba3e -size 1317 +oid sha256:62774d83888a99cf65b639b162393b7dd3e37245341c49537edf42500da72045 +size 1316 diff --git a/data/minecraft/structure/trial_chambers/chamber/slanted/ramp_3.nbt b/data/minecraft/structure/trial_chambers/chamber/slanted/ramp_3.nbt index 69a8d3b3..a7b6f7b8 100644 --- a/data/minecraft/structure/trial_chambers/chamber/slanted/ramp_3.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/slanted/ramp_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:800645ec3e877695d2350457fe7afb7b18abdfe9120375906b1076693fb23bb3 -size 1451 +oid sha256:9e234ae0411b325075f548971e50a352d32bc5e0a359f85036002fc52ca0c2e6 +size 1450 diff --git a/data/minecraft/structure/trial_chambers/chamber/slanted/ramp_4.nbt b/data/minecraft/structure/trial_chambers/chamber/slanted/ramp_4.nbt index c09b8e70..2aa2ab23 100644 --- a/data/minecraft/structure/trial_chambers/chamber/slanted/ramp_4.nbt +++ b/data/minecraft/structure/trial_chambers/chamber/slanted/ramp_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:41e40f774c928ca5a107ec86e8402f9d4f4ac48c0b9085281906b0be243660bd -size 1231 +oid sha256:6e8f55e2c92b012ec64d756195afcf58a3cb38fc815f4e429c49e143353b3cc0 +size 1230 diff --git a/data/minecraft/structure/trial_chambers/chests/connectors/supply.nbt b/data/minecraft/structure/trial_chambers/chests/connectors/supply.nbt index 3af963f1..aeb1776d 100644 --- a/data/minecraft/structure/trial_chambers/chests/connectors/supply.nbt +++ b/data/minecraft/structure/trial_chambers/chests/connectors/supply.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bb59550a518ff11d262639358a2a3b0d0989e562cc3b47239cc6305aa60e93ff -size 354 +oid sha256:4cff77ecbd077e7b905a4cb45a95fe8f4d818d54cb09aefdaf4ab3ff3003ae41 +size 353 diff --git a/data/minecraft/structure/trial_chambers/chests/supply.nbt b/data/minecraft/structure/trial_chambers/chests/supply.nbt index 808db56b..072162c0 100644 --- a/data/minecraft/structure/trial_chambers/chests/supply.nbt +++ b/data/minecraft/structure/trial_chambers/chests/supply.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5626dcfad9bb49d3e466c9443ccbcdce095b51005e915dba088a6ea594a1a746 +oid sha256:2b1d1736a894186b89862b5372ff99e8de1f7a31397437706b5ccc5a2604e21b size 439 diff --git a/data/minecraft/structure/trial_chambers/corridor/addon/arrow_dispenser.nbt b/data/minecraft/structure/trial_chambers/corridor/addon/arrow_dispenser.nbt index 6c6f5074..39fec64c 100644 --- a/data/minecraft/structure/trial_chambers/corridor/addon/arrow_dispenser.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/addon/arrow_dispenser.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ffcc7ed8516bad06ebc780f944f5f17997992ca44a0559ce57e37e2c570fb69e -size 834 +oid sha256:0cb0ef1939ca9a6a0f56c126f1f7774a8f56eebe47b81029ac300e24b6eb10ee +size 833 diff --git a/data/minecraft/structure/trial_chambers/corridor/addon/bridge_lower.nbt b/data/minecraft/structure/trial_chambers/corridor/addon/bridge_lower.nbt index eb2d7e63..9e8382ed 100644 --- a/data/minecraft/structure/trial_chambers/corridor/addon/bridge_lower.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/addon/bridge_lower.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cab9e29e9f1950571d128f3a22cfca1eda629868397babfb2bbb9ea65cabd00c +oid sha256:2e0dc0931931aa5873bd10e24ea8922b1a45234c0defe1ae2f97202c4cce4f1c size 696 diff --git a/data/minecraft/structure/trial_chambers/corridor/addon/chandelier_upper.nbt b/data/minecraft/structure/trial_chambers/corridor/addon/chandelier_upper.nbt index 93dc8aba..9c86ef16 100644 --- a/data/minecraft/structure/trial_chambers/corridor/addon/chandelier_upper.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/addon/chandelier_upper.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c705fa85de0a32eba1e4e6c673145051edd3625070274062630386980d334972 -size 513 +oid sha256:6e41f1f1a39807ef72b8d6f956de1300919f30e42607639ffb041f8643842f3c +size 512 diff --git a/data/minecraft/structure/trial_chambers/corridor/addon/decoration_upper.nbt b/data/minecraft/structure/trial_chambers/corridor/addon/decoration_upper.nbt index a78888ab..4116b0d0 100644 --- a/data/minecraft/structure/trial_chambers/corridor/addon/decoration_upper.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/addon/decoration_upper.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2012e5d08a6bbccf16220f3036e0090c76e56242aeac82fa8909eda5fb683a82 -size 513 +oid sha256:9b7c3f499e37b43662bbc88b799c4ba978d0c9a0b65bde7b9144c06ded0a8e83 +size 512 diff --git a/data/minecraft/structure/trial_chambers/corridor/addon/display_1.nbt b/data/minecraft/structure/trial_chambers/corridor/addon/display_1.nbt index bd256a45..2e2a89ef 100644 --- a/data/minecraft/structure/trial_chambers/corridor/addon/display_1.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/addon/display_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1ce0a2a207b66c5bdfd166380d987b16a49f101b3fa8a00fb050b7ad64f868f0 -size 899 +oid sha256:db97bc20eac8ba34bc14650a197c93f40017ba45fcacf2e164dade5c8c31399c +size 898 diff --git a/data/minecraft/structure/trial_chambers/corridor/addon/display_2.nbt b/data/minecraft/structure/trial_chambers/corridor/addon/display_2.nbt index 862b46d1..0bbf1cc7 100644 --- a/data/minecraft/structure/trial_chambers/corridor/addon/display_2.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/addon/display_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:22e003ebd493fc384302901e1b77818124673c48fa03bb5e38745e9ca3b4aec8 -size 1527 +oid sha256:341f2106810db7ce5bf7a6b6869eef0cab89020ad73716b52a7be02d065d1e61 +size 1526 diff --git a/data/minecraft/structure/trial_chambers/corridor/addon/display_3.nbt b/data/minecraft/structure/trial_chambers/corridor/addon/display_3.nbt index fc3c518c..23282849 100644 --- a/data/minecraft/structure/trial_chambers/corridor/addon/display_3.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/addon/display_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:33971bb0cba62d125758ce0ba8358d60b972cf210fbbd83a09597f54c7c9d8ab -size 811 +oid sha256:5ef9556f118699b2401ba12d7395020d8965a6da7310dce77196b7dd9ce3ecc6 +size 810 diff --git a/data/minecraft/structure/trial_chambers/corridor/addon/head_upper.nbt b/data/minecraft/structure/trial_chambers/corridor/addon/head_upper.nbt index 202af1e5..f3512723 100644 --- a/data/minecraft/structure/trial_chambers/corridor/addon/head_upper.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/addon/head_upper.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0d75386753106b027f62599b9c1f8ae80ae51a45bb2468e1693febf9d1041592 -size 525 +oid sha256:8687ded28d61466bf6aa3808b0e98fd1d495a08a67e9826a2ca8674d0875e298 +size 524 diff --git a/data/minecraft/structure/trial_chambers/corridor/addon/ladder_to_middle.nbt b/data/minecraft/structure/trial_chambers/corridor/addon/ladder_to_middle.nbt index 6fea3cf2..a22b7325 100644 --- a/data/minecraft/structure/trial_chambers/corridor/addon/ladder_to_middle.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/addon/ladder_to_middle.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f3ccd9e1a28ab3bd6c6263840b5f2cb485108fd318ccaa9e80b54fb0d6c3abf9 -size 669 +oid sha256:d5a6380370ac9b6363315539cb0f9bb2178d811636bb07d5f62f0f17f653d295 +size 668 diff --git a/data/minecraft/structure/trial_chambers/corridor/addon/open_walkway.nbt b/data/minecraft/structure/trial_chambers/corridor/addon/open_walkway.nbt index 7fefcdc5..a749bd31 100644 --- a/data/minecraft/structure/trial_chambers/corridor/addon/open_walkway.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/addon/open_walkway.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4b4a2ceb1f2dbbda5f81281de0d63b7eba692219230d30fe558d74191ab5e5e1 -size 1160 +oid sha256:69e961bab0259093d9a3ed18879ed03973545c2a79c8422de320b3fd50b50d68 +size 1159 diff --git a/data/minecraft/structure/trial_chambers/corridor/addon/open_walkway_upper.nbt b/data/minecraft/structure/trial_chambers/corridor/addon/open_walkway_upper.nbt index ada0a828..f1f5c761 100644 --- a/data/minecraft/structure/trial_chambers/corridor/addon/open_walkway_upper.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/addon/open_walkway_upper.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:37fcdfd93e29829a2122dcf0b52123f38e6f65dd136ca28a6804279cbc8df1e5 -size 586 +oid sha256:a6a8253f732a6eb5adeceded0ee334d2e51ac392c1dd0b0283a84cb725ccfb52 +size 585 diff --git a/data/minecraft/structure/trial_chambers/corridor/addon/reward_upper.nbt b/data/minecraft/structure/trial_chambers/corridor/addon/reward_upper.nbt index d0b074df..eabf9418 100644 --- a/data/minecraft/structure/trial_chambers/corridor/addon/reward_upper.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/addon/reward_upper.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:69d3219fb00f5aa0f166187f1aa4bb0ed6c2d726cc78f283b5fb7f9edb2e8e5f -size 588 +oid sha256:0014b7376b9f00103a5851302ba4e187a618d0ad82a4214758f36c34b2a36128 +size 587 diff --git a/data/minecraft/structure/trial_chambers/corridor/addon/staircase.nbt b/data/minecraft/structure/trial_chambers/corridor/addon/staircase.nbt index b58321a2..0cd42938 100644 --- a/data/minecraft/structure/trial_chambers/corridor/addon/staircase.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/addon/staircase.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:478fa40e51b248ac5422677039256ab2d01218e2b336a64c9baa90f7aa465ac2 -size 456 +oid sha256:52776e000f18dc62ae9b6b53026cbe1f37e4f52e36d7e5e0423fd5960272db20 +size 455 diff --git a/data/minecraft/structure/trial_chambers/corridor/addon/wall.nbt b/data/minecraft/structure/trial_chambers/corridor/addon/wall.nbt index 23f101cf..59e2c058 100644 --- a/data/minecraft/structure/trial_chambers/corridor/addon/wall.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/addon/wall.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2499526a7f0cb471ac0b9953d429fadea67aefe09f317384715b12e6a19516e8 -size 908 +oid sha256:f90d5b3d3891b2901d921c194ec1b33e453cb05f5441c79a372f79d17170527c +size 907 diff --git a/data/minecraft/structure/trial_chambers/corridor/addon/walled_walkway.nbt b/data/minecraft/structure/trial_chambers/corridor/addon/walled_walkway.nbt index 98994491..d646c90a 100644 --- a/data/minecraft/structure/trial_chambers/corridor/addon/walled_walkway.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/addon/walled_walkway.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ca09e22ef1fd888c154030532848529775b685d4c70fecbd054bd3d7e97ad6d8 -size 1186 +oid sha256:b952f10291b7642793be2c705335c3e2e082e940a3a06fd944adfba8050c3674 +size 1185 diff --git a/data/minecraft/structure/trial_chambers/corridor/atrium/bogged_relief.nbt b/data/minecraft/structure/trial_chambers/corridor/atrium/bogged_relief.nbt index a998837f..6113199c 100644 --- a/data/minecraft/structure/trial_chambers/corridor/atrium/bogged_relief.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/atrium/bogged_relief.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1ea39a9914b40015073bf2006313ac4567cb0346589cada790b93e06923294d2 -size 3244 +oid sha256:0bfb7b4de03a43601ce1a4a70175e0fdc512f6ab1b89fd3d3b1d9273928325ad +size 3243 diff --git a/data/minecraft/structure/trial_chambers/corridor/atrium/breeze_relief.nbt b/data/minecraft/structure/trial_chambers/corridor/atrium/breeze_relief.nbt index cb4af8ab..9c41f3fd 100644 --- a/data/minecraft/structure/trial_chambers/corridor/atrium/breeze_relief.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/atrium/breeze_relief.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fbc8fdbd5657c28bc0e5e108dbbe1be2f67d3e339fd4df50fd17fd7b13302111 -size 3222 +oid sha256:468f577b8a1f97af1703b20ff74234ce82b6f064535e749c1ed9299e6d7363eb +size 3221 diff --git a/data/minecraft/structure/trial_chambers/corridor/atrium/grand_staircase_1.nbt b/data/minecraft/structure/trial_chambers/corridor/atrium/grand_staircase_1.nbt index 1db66499..40244192 100644 --- a/data/minecraft/structure/trial_chambers/corridor/atrium/grand_staircase_1.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/atrium/grand_staircase_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:994daa030472025b26d64bede326f89e750051e4b46c2d00b98f3d4015950a91 -size 2883 +oid sha256:ee3949f42bcddafa0d527d8c0c415c092814fb74afb0dff48a960ccc356aee79 +size 2882 diff --git a/data/minecraft/structure/trial_chambers/corridor/atrium/grand_staircase_2.nbt b/data/minecraft/structure/trial_chambers/corridor/atrium/grand_staircase_2.nbt index e880d597..510963b1 100644 --- a/data/minecraft/structure/trial_chambers/corridor/atrium/grand_staircase_2.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/atrium/grand_staircase_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bb4e80d414eb86e1c8fccd89887825a1428be83f1d21d762c2b82fa2125a1239 -size 2819 +oid sha256:adbce4375070bbff1b6264aa338e2ec9c9ffd54e2dec1fb580f1b63df28df46a +size 2818 diff --git a/data/minecraft/structure/trial_chambers/corridor/atrium/grand_staircase_3.nbt b/data/minecraft/structure/trial_chambers/corridor/atrium/grand_staircase_3.nbt index 6c0f781d..5b36adbf 100644 --- a/data/minecraft/structure/trial_chambers/corridor/atrium/grand_staircase_3.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/atrium/grand_staircase_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2c375c44a1378d7855825581984c763b2e10bdda5294351a5fbfa61cc026a7f3 -size 2830 +oid sha256:e519766bfbf7efac7aabf5330fdb01bf2fcc1c588c4a4e2d0065eb28c89bb6bf +size 2829 diff --git a/data/minecraft/structure/trial_chambers/corridor/atrium/spider_relief.nbt b/data/minecraft/structure/trial_chambers/corridor/atrium/spider_relief.nbt index 15efe5bf..181b3ef3 100644 --- a/data/minecraft/structure/trial_chambers/corridor/atrium/spider_relief.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/atrium/spider_relief.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0d12864578112f61a7f4de503c6fccce9599a3fcce07e977cef53e88ac8e9748 -size 3848 +oid sha256:a244c3b3c73e89f1967982c769b5fc77d9ca4daafb304d29bcb2795d7a0c892b +size 3847 diff --git a/data/minecraft/structure/trial_chambers/corridor/atrium/spiral_relief.nbt b/data/minecraft/structure/trial_chambers/corridor/atrium/spiral_relief.nbt index 0828412a..f88ed4c8 100644 --- a/data/minecraft/structure/trial_chambers/corridor/atrium/spiral_relief.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/atrium/spiral_relief.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:853293cc42a152475b6d7e7ab45c307ce7377d631873a3022a626108a5b7058d -size 3316 +oid sha256:117c16e269bd4eaa234f80dd642cc7bfce85c7a08528cddb62e02a30d93bdb62 +size 3315 diff --git a/data/minecraft/structure/trial_chambers/corridor/atrium_1.nbt b/data/minecraft/structure/trial_chambers/corridor/atrium_1.nbt index ce186976..1632affd 100644 --- a/data/minecraft/structure/trial_chambers/corridor/atrium_1.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/atrium_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b41313ddafb04445c50b336f4ef267a46232594515858d79ddb566903ef1d40c -size 23426 +oid sha256:7c3b36deefffbd367906c9a3d85ebb2edc7d8518ef37192c4a0b54f00db2b9f7 +size 23425 diff --git a/data/minecraft/structure/trial_chambers/corridor/end_1.nbt b/data/minecraft/structure/trial_chambers/corridor/end_1.nbt index a06e7307..31657fb2 100644 --- a/data/minecraft/structure/trial_chambers/corridor/end_1.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/end_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0eee401026d4b643a9e829ae490971e37c324b815a389542faff808b9fa3929d -size 21445 +oid sha256:9aa9458deca5742145ba1c07c67d6b77ab1eb9f05a0cf61498dcf8888b981243 +size 21444 diff --git a/data/minecraft/structure/trial_chambers/corridor/end_2.nbt b/data/minecraft/structure/trial_chambers/corridor/end_2.nbt index 477af335..bc680904 100644 --- a/data/minecraft/structure/trial_chambers/corridor/end_2.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/end_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cfb7b21f848dfff73d58845925ff977e018da549f341fd9ca62209c62fb4ac84 -size 21888 +oid sha256:62d1775048068bc7b12d4721ec3af611e561c39246752e444cff990b5d7cf9d8 +size 21887 diff --git a/data/minecraft/structure/trial_chambers/corridor/entrance_1.nbt b/data/minecraft/structure/trial_chambers/corridor/entrance_1.nbt index 1abbfbdb..3fc0b03c 100644 --- a/data/minecraft/structure/trial_chambers/corridor/entrance_1.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/entrance_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:932b0bf35d3aa8c38dad2cd3c5d010d5928594966ebe3b54c3d5bf2a257b1d7f -size 22025 +oid sha256:10a2a9b5273eda23153b2dc6655ed25e5bf2de4e7d947b229c28729d70e58e2c +size 22024 diff --git a/data/minecraft/structure/trial_chambers/corridor/entrance_2.nbt b/data/minecraft/structure/trial_chambers/corridor/entrance_2.nbt index 3eef28f5..e1a4fccf 100644 --- a/data/minecraft/structure/trial_chambers/corridor/entrance_2.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/entrance_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:676b07b834e6d38b8fd5e3a3f479d9b3823aa3645a3093bfe06cbeb9b498e215 +oid sha256:0f592ab71d4581390e40e9c08bc88288e0916b0b8b6d51e737d2b24339fa258f size 21599 diff --git a/data/minecraft/structure/trial_chambers/corridor/entrance_3.nbt b/data/minecraft/structure/trial_chambers/corridor/entrance_3.nbt index cb64073c..0d59e145 100644 --- a/data/minecraft/structure/trial_chambers/corridor/entrance_3.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/entrance_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f06866685230f8a7c5df09f956e96de97d4b8384c3c8d76043826fbb548e5f8c -size 24030 +oid sha256:c27f4b1d3c8e61c8249020ff6c7cc589e066cd0faf92c5516b4f7d9a43fe4875 +size 24029 diff --git a/data/minecraft/structure/trial_chambers/corridor/first_plate.nbt b/data/minecraft/structure/trial_chambers/corridor/first_plate.nbt index 88e06c1d..9632119a 100644 --- a/data/minecraft/structure/trial_chambers/corridor/first_plate.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/first_plate.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8f955c1d9b0a0a69ee0e1a182e7396788b170a85be82a5cdc9590d45ad1be9c0 -size 1472 +oid sha256:215474b33997e34f256ac9f9939810c9b7c5f1a203f08e0fe4a15d7ece7a8b96 +size 1471 diff --git a/data/minecraft/structure/trial_chambers/corridor/second_plate.nbt b/data/minecraft/structure/trial_chambers/corridor/second_plate.nbt index abddf9a8..c575579c 100644 --- a/data/minecraft/structure/trial_chambers/corridor/second_plate.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/second_plate.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5bef5e0c4b7bd1fa1ceae7595028cc3e5b91cdfc3422580c34283f504bf80109 -size 1477 +oid sha256:94eab646fe0bada8d93ecbe867f3efbf4450f41eb7069e925bd6b4ef33153aca +size 1476 diff --git a/data/minecraft/structure/trial_chambers/corridor/straight_1.nbt b/data/minecraft/structure/trial_chambers/corridor/straight_1.nbt index 5be057d4..df3ee72d 100644 --- a/data/minecraft/structure/trial_chambers/corridor/straight_1.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/straight_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:33e83aa9daf0ecaff21a93d1c5fa52bfbf394d57d5d777a83489f45cdc168ff7 -size 5671 +oid sha256:bcca570684a9ccfeaaf1dce9216879b4fb36a2f0bc59f5b0b7424d4e59971baa +size 5670 diff --git a/data/minecraft/structure/trial_chambers/corridor/straight_2.nbt b/data/minecraft/structure/trial_chambers/corridor/straight_2.nbt index 924e9c46..cb664784 100644 --- a/data/minecraft/structure/trial_chambers/corridor/straight_2.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/straight_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6f83ceb27483f1b48dfb301ffd052bd7892cd446a6cb895a74fa815dd6e0bce9 -size 5847 +oid sha256:90a106e7fd5bb1c38014e66aae401fdc2edbb10ca295486b5e961743d9486322 +size 5846 diff --git a/data/minecraft/structure/trial_chambers/corridor/straight_3.nbt b/data/minecraft/structure/trial_chambers/corridor/straight_3.nbt index 4b377cb6..238d49f3 100644 --- a/data/minecraft/structure/trial_chambers/corridor/straight_3.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/straight_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:675ed1f30e16200b408cc49df47cba45c480ce749caaa1c25384c0d9877e402d -size 5820 +oid sha256:4fd810b1827069261165ad76f4d3be8f2f347528790a4d21794292cc506d250a +size 5819 diff --git a/data/minecraft/structure/trial_chambers/corridor/straight_4.nbt b/data/minecraft/structure/trial_chambers/corridor/straight_4.nbt index 6a719713..4e42ee74 100644 --- a/data/minecraft/structure/trial_chambers/corridor/straight_4.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/straight_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ebbe15a98e04fa1649ff007a8d2b1e4ee42c1d6bb97f2288eedf7e6a3a0688b2 -size 5814 +oid sha256:ab121f35a8264104c2678a4cd1828088626b575100e9331cc90c1e0e4c0cdf02 +size 5813 diff --git a/data/minecraft/structure/trial_chambers/corridor/straight_5.nbt b/data/minecraft/structure/trial_chambers/corridor/straight_5.nbt index 894091a8..9ffe11eb 100644 --- a/data/minecraft/structure/trial_chambers/corridor/straight_5.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/straight_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6f5a335c671172237b601849a1674824e5028f5b26cc1dd91aa0a32759601c09 -size 5821 +oid sha256:b28a0d43af07ebda017a0e975fe270456dbe7cb4d81c8e499eb267c41e9c777a +size 5820 diff --git a/data/minecraft/structure/trial_chambers/corridor/straight_6.nbt b/data/minecraft/structure/trial_chambers/corridor/straight_6.nbt index 92399a9e..6451b565 100644 --- a/data/minecraft/structure/trial_chambers/corridor/straight_6.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/straight_6.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:82565ffe9c9ec6e2113e96d144558fb07638c6eb517be52fe0890edb9492c35b -size 5786 +oid sha256:e6bb2b94c56294c3f165366c529c44ceed0e394bb2ec3234f8cb95d0e1867eb3 +size 5785 diff --git a/data/minecraft/structure/trial_chambers/corridor/straight_7.nbt b/data/minecraft/structure/trial_chambers/corridor/straight_7.nbt index c87ef867..d8d61eca 100644 --- a/data/minecraft/structure/trial_chambers/corridor/straight_7.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/straight_7.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3e6c0a0a2dff071c3dd22e334061723647c21eacdb3bad725d71e0ab3fe958cd -size 5776 +oid sha256:a628bef880fb235a54c87e8e8879aff9f23b0138237c25c14a18460b48f10f6e +size 5775 diff --git a/data/minecraft/structure/trial_chambers/corridor/straight_8.nbt b/data/minecraft/structure/trial_chambers/corridor/straight_8.nbt index e7c138bd..3be20cd7 100644 --- a/data/minecraft/structure/trial_chambers/corridor/straight_8.nbt +++ b/data/minecraft/structure/trial_chambers/corridor/straight_8.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:56393fcfb027a420d18a9748c434652ff16532306bedadb9efc33e9e56836d57 -size 5561 +oid sha256:226f8ffd9ff8d2b3a2d353b170d6b348de79fd23886f95ffce9051ed8e9c384d +size 5560 diff --git a/data/minecraft/structure/trial_chambers/decor/barrel.nbt b/data/minecraft/structure/trial_chambers/decor/barrel.nbt index c26cd959..ac19491a 100644 --- a/data/minecraft/structure/trial_chambers/decor/barrel.nbt +++ b/data/minecraft/structure/trial_chambers/decor/barrel.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:52ec1993d86019db6c91a33aeadb2a89cc971a2d97c959a10db783766501a72f -size 336 +oid sha256:7708813e84a637fb94de103b0a617db5e174f8c874692937aeda086d92ee7189 +size 335 diff --git a/data/minecraft/structure/trial_chambers/decor/black_bed.nbt b/data/minecraft/structure/trial_chambers/decor/black_bed.nbt index ee8486be..72d93e37 100644 --- a/data/minecraft/structure/trial_chambers/decor/black_bed.nbt +++ b/data/minecraft/structure/trial_chambers/decor/black_bed.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7e8ff4609ddd364727bb97f9f64022d948313590bc768348104be004601f98e6 -size 325 +oid sha256:d166a93cec0545b71cf0257b749bac3efb1b254c5f42458cf677386f4ba1713a +size 324 diff --git a/data/minecraft/structure/trial_chambers/decor/blue_bed.nbt b/data/minecraft/structure/trial_chambers/decor/blue_bed.nbt index 837c173d..1913b44e 100644 --- a/data/minecraft/structure/trial_chambers/decor/blue_bed.nbt +++ b/data/minecraft/structure/trial_chambers/decor/blue_bed.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:64467682877451061e2975507b4fd6a7b2e123d2d0feaba5ae169b365a20105e -size 324 +oid sha256:b0a03341e03468b93faf69c0b82e82f5b5ad107b9002b2c9335d06403fd86ce4 +size 323 diff --git a/data/minecraft/structure/trial_chambers/decor/brown_bed.nbt b/data/minecraft/structure/trial_chambers/decor/brown_bed.nbt index b27bcf2d..71b3e418 100644 --- a/data/minecraft/structure/trial_chambers/decor/brown_bed.nbt +++ b/data/minecraft/structure/trial_chambers/decor/brown_bed.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b5294290ffa614f4b1f43d3bfb0437f0fcb495ec03b168ef59c1cf5b325727af -size 326 +oid sha256:c49fcfcc16f20a5e3402951c7bc772bd792fcfe6f91726f63a8df41912689fc2 +size 325 diff --git a/data/minecraft/structure/trial_chambers/decor/candle_1.nbt b/data/minecraft/structure/trial_chambers/decor/candle_1.nbt index 5e12fe80..d268e2b3 100644 --- a/data/minecraft/structure/trial_chambers/decor/candle_1.nbt +++ b/data/minecraft/structure/trial_chambers/decor/candle_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3f83ef0da89a7244b460ffb968e1478e5151574b3d52d21a050cf48de197fa1b -size 306 +oid sha256:0443b0e2a7c7c47e1e40cafa38ad626c6582842a8ef32b72b628e1b855c7c82e +size 305 diff --git a/data/minecraft/structure/trial_chambers/decor/candle_2.nbt b/data/minecraft/structure/trial_chambers/decor/candle_2.nbt index 70c480d8..acba9b84 100644 --- a/data/minecraft/structure/trial_chambers/decor/candle_2.nbt +++ b/data/minecraft/structure/trial_chambers/decor/candle_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5c0149aec8113e3b5f2f515083052a1f01200a1ec7f6caf8a75e5bb40d3c6d54 -size 306 +oid sha256:3927b5ba2b3806a12551b02ce792cce7f1025c0cad8ca5813f2b49c755459041 +size 305 diff --git a/data/minecraft/structure/trial_chambers/decor/candle_3.nbt b/data/minecraft/structure/trial_chambers/decor/candle_3.nbt index 10f4b5e6..d8d258d9 100644 --- a/data/minecraft/structure/trial_chambers/decor/candle_3.nbt +++ b/data/minecraft/structure/trial_chambers/decor/candle_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:66a46a5cf880e864f60d21cf6df1c081cc6e9eb64b6d1cc7b4aa238fa44e975d -size 306 +oid sha256:7f5c0452ef2a048fa552a133c1c27da7b9ab179a744bf15f60ba98e68433e870 +size 305 diff --git a/data/minecraft/structure/trial_chambers/decor/candle_4.nbt b/data/minecraft/structure/trial_chambers/decor/candle_4.nbt index 1ee194a9..63c4aec2 100644 --- a/data/minecraft/structure/trial_chambers/decor/candle_4.nbt +++ b/data/minecraft/structure/trial_chambers/decor/candle_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b6abe9e3622d6af6105f8b3c72141b1d570cecf11aceeba36de0dedbdcec5fc3 -size 306 +oid sha256:81bcc28bc43462a1a0fe39a45ee9f11b35560570a73c375dd723a2a91f7f3ba9 +size 305 diff --git a/data/minecraft/structure/trial_chambers/decor/cyan_bed.nbt b/data/minecraft/structure/trial_chambers/decor/cyan_bed.nbt index 30023c92..5ab131ce 100644 --- a/data/minecraft/structure/trial_chambers/decor/cyan_bed.nbt +++ b/data/minecraft/structure/trial_chambers/decor/cyan_bed.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1e4b28be25b076f3902b9b0b1fcb5db061cac36a4284f9f85e46b703f645559c -size 324 +oid sha256:b3d19d1497b13049eb309ffcdfa9362c345dc138cb21a55ce3644082d53ac94a +size 323 diff --git a/data/minecraft/structure/trial_chambers/decor/dead_bush_pot.nbt b/data/minecraft/structure/trial_chambers/decor/dead_bush_pot.nbt index 5d84d523..5c007314 100644 --- a/data/minecraft/structure/trial_chambers/decor/dead_bush_pot.nbt +++ b/data/minecraft/structure/trial_chambers/decor/dead_bush_pot.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a661d27157b9989ef5cac0b1c78bf0f8969e5c525f50eef564324d455aecd762 -size 289 +oid sha256:e0068c67b46e6f410808f446c4200a226398039d550eb427a6cb80c12dd0c84a +size 288 diff --git a/data/minecraft/structure/trial_chambers/decor/disposal.nbt b/data/minecraft/structure/trial_chambers/decor/disposal.nbt index 34885cf3..bd08589f 100644 --- a/data/minecraft/structure/trial_chambers/decor/disposal.nbt +++ b/data/minecraft/structure/trial_chambers/decor/disposal.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:61738cb10e3a754b6bfe2a20296453f507b04e585078d51b46b566af9fb1fd47 -size 515 +oid sha256:fc79d6a138f65576ca74808e07256840f7172e3c762fec0da716213bc262bec8 +size 514 diff --git a/data/minecraft/structure/trial_chambers/decor/empty_pot.nbt b/data/minecraft/structure/trial_chambers/decor/empty_pot.nbt index 37be74ef..9db1292f 100644 --- a/data/minecraft/structure/trial_chambers/decor/empty_pot.nbt +++ b/data/minecraft/structure/trial_chambers/decor/empty_pot.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d2e4a542165299dd50313f1ed07dd082fc3712142b28040b8f3c0bd822a21e21 -size 285 +oid sha256:03b346cd875fbfbcbcd98c06cd6f61c620b8ffccf4924018779fe70dcd61c4ab +size 284 diff --git a/data/minecraft/structure/trial_chambers/decor/flow_pot.nbt b/data/minecraft/structure/trial_chambers/decor/flow_pot.nbt index d5ae380b..169cafec 100644 --- a/data/minecraft/structure/trial_chambers/decor/flow_pot.nbt +++ b/data/minecraft/structure/trial_chambers/decor/flow_pot.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:777a29573405505d1ee39719e698f7fc8978ccdaf698858303afdef5903e9a75 -size 387 +oid sha256:c22525300e5ee5891d98fe141c332d93e6d52496c586b89ff69b5860c647943b +size 386 diff --git a/data/minecraft/structure/trial_chambers/decor/gray_bed.nbt b/data/minecraft/structure/trial_chambers/decor/gray_bed.nbt index 50209add..b41c2603 100644 --- a/data/minecraft/structure/trial_chambers/decor/gray_bed.nbt +++ b/data/minecraft/structure/trial_chambers/decor/gray_bed.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e310d728731c14fff3467dcfca01549ed5d53d536a7b7543422d7839df105887 -size 325 +oid sha256:d8a4692f025e14f3bdec634b8d0a68182dd756ca68b94e237b9a3f71b938cb10 +size 324 diff --git a/data/minecraft/structure/trial_chambers/decor/green_bed.nbt b/data/minecraft/structure/trial_chambers/decor/green_bed.nbt index 7ea59703..29f28fa7 100644 --- a/data/minecraft/structure/trial_chambers/decor/green_bed.nbt +++ b/data/minecraft/structure/trial_chambers/decor/green_bed.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a75faa0dd4ac28628d7e7c667a06ce8ea46728e3e32e41a79fc42a160a0e85da -size 326 +oid sha256:4be13ab1a9be781e8fdfb49b6b7a58f68ede01ffd0179fe34e3307b6ec415ede +size 325 diff --git a/data/minecraft/structure/trial_chambers/decor/guster_pot.nbt b/data/minecraft/structure/trial_chambers/decor/guster_pot.nbt index f8cb1fef..0670f4d1 100644 --- a/data/minecraft/structure/trial_chambers/decor/guster_pot.nbt +++ b/data/minecraft/structure/trial_chambers/decor/guster_pot.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bb6c81493a03331a6add5a1940ff6c57d846c89470369f04294970faefcb5fc9 +oid sha256:4a12808927bd9d02dca1bb4a018373f95d8d897d77b65101ff8440868866a7cd size 384 diff --git a/data/minecraft/structure/trial_chambers/decor/light_blue_bed.nbt b/data/minecraft/structure/trial_chambers/decor/light_blue_bed.nbt index 5373e660..8e11a90e 100644 --- a/data/minecraft/structure/trial_chambers/decor/light_blue_bed.nbt +++ b/data/minecraft/structure/trial_chambers/decor/light_blue_bed.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:83607b108c4f467227b3e6c2d877927fb95457f4b2e4c1ebe64415189d8fea26 -size 331 +oid sha256:4acb8057edde4d347f6830d426241c94c890f60f6b3de2da760d8802afc97f5c +size 330 diff --git a/data/minecraft/structure/trial_chambers/decor/light_gray_bed.nbt b/data/minecraft/structure/trial_chambers/decor/light_gray_bed.nbt index 752fc9fd..97c7c9f8 100644 --- a/data/minecraft/structure/trial_chambers/decor/light_gray_bed.nbt +++ b/data/minecraft/structure/trial_chambers/decor/light_gray_bed.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:741602ce10971fda49bdf36dfd11fa4c754d9b233ebf9ce28a95353554ec1479 -size 331 +oid sha256:567a9af754f91ea1d0b3936f3ea0ec48c16ef44779709d4903db52e59ebcc111 +size 330 diff --git a/data/minecraft/structure/trial_chambers/decor/lime_bed.nbt b/data/minecraft/structure/trial_chambers/decor/lime_bed.nbt index 21ca3e1b..9f997f10 100644 --- a/data/minecraft/structure/trial_chambers/decor/lime_bed.nbt +++ b/data/minecraft/structure/trial_chambers/decor/lime_bed.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fd31f8bad5c348af2399e8c551f2f19dbce6c0667c52786c98b2f51b11e74d44 -size 324 +oid sha256:510dfdd739ef12d04b1ce06537a8fecdc49b4f57868e868cce67bb0131a1ca9c +size 323 diff --git a/data/minecraft/structure/trial_chambers/decor/magenta_bed.nbt b/data/minecraft/structure/trial_chambers/decor/magenta_bed.nbt index b1733edb..551d4ab7 100644 --- a/data/minecraft/structure/trial_chambers/decor/magenta_bed.nbt +++ b/data/minecraft/structure/trial_chambers/decor/magenta_bed.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ee293dc340fe75724b53f02792a62a2cae7e73af33287bc12d9f6b882e8334cd -size 327 +oid sha256:6cc1f401ae7edfa5bface6182b48cda9b560f54b0ae91adec46a9892f169e5a3 +size 326 diff --git a/data/minecraft/structure/trial_chambers/decor/orange_bed.nbt b/data/minecraft/structure/trial_chambers/decor/orange_bed.nbt index 4675749c..b411d5f3 100644 --- a/data/minecraft/structure/trial_chambers/decor/orange_bed.nbt +++ b/data/minecraft/structure/trial_chambers/decor/orange_bed.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6dc9deaa14ec9c3d45b1669b88aa7e952636fdceeec7a094805c1449a37004fc -size 327 +oid sha256:85effee3147fb7d2364a82fc95cf09d0fb360eb4c67af1e199f6a65ffe2e7b39 +size 326 diff --git a/data/minecraft/structure/trial_chambers/decor/pink_bed.nbt b/data/minecraft/structure/trial_chambers/decor/pink_bed.nbt index cf40d076..dffbc1a0 100644 --- a/data/minecraft/structure/trial_chambers/decor/pink_bed.nbt +++ b/data/minecraft/structure/trial_chambers/decor/pink_bed.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:517dc7c26884a33d8d4301ffa0dfdc60672ada8e0ec8253238eede39b0c79573 -size 324 +oid sha256:1b3487346d42df8dc980a8d8976cd35281929e01f41ecd6f5c4a2dc050be7bc2 +size 323 diff --git a/data/minecraft/structure/trial_chambers/decor/purple_bed.nbt b/data/minecraft/structure/trial_chambers/decor/purple_bed.nbt index 4346ef03..712d65ff 100644 --- a/data/minecraft/structure/trial_chambers/decor/purple_bed.nbt +++ b/data/minecraft/structure/trial_chambers/decor/purple_bed.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cc4c3dd9c27215945270f2bfff435c1f7e3742bb6d3c3ec162cd0e8c747a5fdb -size 327 +oid sha256:8130fb95cdc991256df480cbc1c92e745fdf0c2313cda6c4167833a8a9a531b1 +size 326 diff --git a/data/minecraft/structure/trial_chambers/decor/red_bed.nbt b/data/minecraft/structure/trial_chambers/decor/red_bed.nbt index cef05dd3..62e67106 100644 --- a/data/minecraft/structure/trial_chambers/decor/red_bed.nbt +++ b/data/minecraft/structure/trial_chambers/decor/red_bed.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2a2ff010275dafbb511b35a0c3c61e3ace7978d218d3ef80abf945922181af32 -size 323 +oid sha256:af90bcc1c5d63e6abfd5fa407ddaa31915f704b4d5514008109a648a07455726 +size 322 diff --git a/data/minecraft/structure/trial_chambers/decor/scrape_pot.nbt b/data/minecraft/structure/trial_chambers/decor/scrape_pot.nbt index 1af8a21c..b9921ce5 100644 --- a/data/minecraft/structure/trial_chambers/decor/scrape_pot.nbt +++ b/data/minecraft/structure/trial_chambers/decor/scrape_pot.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f8ff2ff688138078e19f834f74686a44256e7272578a84b4da9a38c73072f831 -size 384 +oid sha256:824cd694cfaf7c6c24c003c118b2256c4a3ed6eb325a876531e0fd6fcfacbbff +size 383 diff --git a/data/minecraft/structure/trial_chambers/decor/undecorated_pot.nbt b/data/minecraft/structure/trial_chambers/decor/undecorated_pot.nbt index c3e4d284..be548528 100644 --- a/data/minecraft/structure/trial_chambers/decor/undecorated_pot.nbt +++ b/data/minecraft/structure/trial_chambers/decor/undecorated_pot.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:391eff72a94b8c78bed0b6af8d522ac6699b85412fae5229a4a9ff192eb0a3ce +oid sha256:8528aa32c1adadaf687ab6c1931dfeee39a4897d5c0af8e1a2e7f8e635b7dbe1 size 352 diff --git a/data/minecraft/structure/trial_chambers/decor/white_bed.nbt b/data/minecraft/structure/trial_chambers/decor/white_bed.nbt index c6341856..ab2a3b60 100644 --- a/data/minecraft/structure/trial_chambers/decor/white_bed.nbt +++ b/data/minecraft/structure/trial_chambers/decor/white_bed.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9de90efba94d9451fd9e7846d824b5a2778c1e6c249b753241d48f49788e4ae1 -size 326 +oid sha256:15bdd8c98386d9d7f40b92f8b03016aa2fa22186d6844afecebfb045ea5693e1 +size 325 diff --git a/data/minecraft/structure/trial_chambers/decor/yellow_bed.nbt b/data/minecraft/structure/trial_chambers/decor/yellow_bed.nbt index 99395b48..33d293ec 100644 --- a/data/minecraft/structure/trial_chambers/decor/yellow_bed.nbt +++ b/data/minecraft/structure/trial_chambers/decor/yellow_bed.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:82bf60ee977a24756dfb3effaa83a9d935a9b6f6b1985ab40ac09a682725e7f1 -size 328 +oid sha256:bb53f34a566a0fda9cad089ecc97bb3ef820cf7e2c2367a83e2307dd6ef4e4ab +size 326 diff --git a/data/minecraft/structure/trial_chambers/dispensers/chamber.nbt b/data/minecraft/structure/trial_chambers/dispensers/chamber.nbt index 8136c123..6b476bb5 100644 --- a/data/minecraft/structure/trial_chambers/dispensers/chamber.nbt +++ b/data/minecraft/structure/trial_chambers/dispensers/chamber.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5cb1e9121e49074f133b3624fd4e78ef6676e9086c35dc3949af87a0fa0f5776 -size 383 +oid sha256:81ac331eb74f3b8c6ee9ecf4876fcc3f03d567585b3e39bf63b312af6f82b281 +size 382 diff --git a/data/minecraft/structure/trial_chambers/dispensers/floor_dispenser.nbt b/data/minecraft/structure/trial_chambers/dispensers/floor_dispenser.nbt index 95e32ced..80a0fee8 100644 --- a/data/minecraft/structure/trial_chambers/dispensers/floor_dispenser.nbt +++ b/data/minecraft/structure/trial_chambers/dispensers/floor_dispenser.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e412b67dbbd827e9cb26ee6829f9c33fb97d53275b960ff76bfe531baa6856d3 -size 357 +oid sha256:26fb1b3af4df26c526b024d753d7c60431707c87617599493d019207d3997cff +size 356 diff --git a/data/minecraft/structure/trial_chambers/dispensers/wall_dispenser.nbt b/data/minecraft/structure/trial_chambers/dispensers/wall_dispenser.nbt index 79b05d0f..763fc288 100644 --- a/data/minecraft/structure/trial_chambers/dispensers/wall_dispenser.nbt +++ b/data/minecraft/structure/trial_chambers/dispensers/wall_dispenser.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f99f4d57ed333d27d7e6e7397bfb69810e4ede1ddddba0d5998621d91ecaf35b -size 414 +oid sha256:f67173787db8032c54aba6b5592ffd47c3959a474d980a0523cd60cf11f33984 +size 413 diff --git a/data/minecraft/structure/trial_chambers/hallway/cache_1.nbt b/data/minecraft/structure/trial_chambers/hallway/cache_1.nbt index 76d685e1..1c5815b4 100644 --- a/data/minecraft/structure/trial_chambers/hallway/cache_1.nbt +++ b/data/minecraft/structure/trial_chambers/hallway/cache_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4134df736d6ebcb749331281d9432db5e86a7e7ff416a8d061c8ce26627e12c7 -size 2708 +oid sha256:edb8b55631e4a235f10b6dba7b2ae2070b1570630c8c203b0772fa1310253c11 +size 2707 diff --git a/data/minecraft/structure/trial_chambers/hallway/corner_staircase.nbt b/data/minecraft/structure/trial_chambers/hallway/corner_staircase.nbt index b07e2f2d..c72accfd 100644 --- a/data/minecraft/structure/trial_chambers/hallway/corner_staircase.nbt +++ b/data/minecraft/structure/trial_chambers/hallway/corner_staircase.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e7aefa63746e3721a887fbad851394de68ab1747e3803f6be6d33c0dded1c1d3 -size 1434 +oid sha256:a042905fd95b0263bdf95877b91d7b8cc1281d8ba245142018da3aff2dc73b64 +size 1433 diff --git a/data/minecraft/structure/trial_chambers/hallway/corner_staircase_down.nbt b/data/minecraft/structure/trial_chambers/hallway/corner_staircase_down.nbt index 7ed78f00..aa159f8d 100644 --- a/data/minecraft/structure/trial_chambers/hallway/corner_staircase_down.nbt +++ b/data/minecraft/structure/trial_chambers/hallway/corner_staircase_down.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7fee1b9ac96f6be40e0baa550f006b032f24a49be35a9ab386634c9a2eb46277 -size 1437 +oid sha256:68ba4f5020780d4c24fb3845204ea172ae1be397289b0a919e19f71d789b7bac +size 1436 diff --git a/data/minecraft/structure/trial_chambers/hallway/corridor_connector_1.nbt b/data/minecraft/structure/trial_chambers/hallway/corridor_connector_1.nbt index 9216ecba..0232287f 100644 --- a/data/minecraft/structure/trial_chambers/hallway/corridor_connector_1.nbt +++ b/data/minecraft/structure/trial_chambers/hallway/corridor_connector_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d8b04356f89acbee2d222bf1023ebcf49179e31d1e693aa292b236eeeb41035e -size 688 +oid sha256:d32d0d749e26701295a5ac4b4cda601884bd99a59b34c8e0ca2383f6b14870d3 +size 687 diff --git a/data/minecraft/structure/trial_chambers/hallway/encounter_1.nbt b/data/minecraft/structure/trial_chambers/hallway/encounter_1.nbt index 2fa4c4cb..890e2d68 100644 --- a/data/minecraft/structure/trial_chambers/hallway/encounter_1.nbt +++ b/data/minecraft/structure/trial_chambers/hallway/encounter_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5a7f610b772e9c80939bfa58daefbb72c67a9c57e1e2f1cadd6a169d8da494b7 -size 7350 +oid sha256:523bc07c5e1832a7b7fe681ee47ca580ccf8cb2803a24a5d363dbe2cad83a117 +size 7349 diff --git a/data/minecraft/structure/trial_chambers/hallway/encounter_2.nbt b/data/minecraft/structure/trial_chambers/hallway/encounter_2.nbt index 54ae3809..d1d72496 100644 --- a/data/minecraft/structure/trial_chambers/hallway/encounter_2.nbt +++ b/data/minecraft/structure/trial_chambers/hallway/encounter_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:64bbd95deb9f6cc309e73c668653f628f12458b49d8216433e5eff48ab56d59e +oid sha256:22ab26a9d5e832995690965b1f48de6d1007a733e20ff7c0a847058d1961a537 size 6704 diff --git a/data/minecraft/structure/trial_chambers/hallway/encounter_3.nbt b/data/minecraft/structure/trial_chambers/hallway/encounter_3.nbt index 48763a9b..402b1323 100644 --- a/data/minecraft/structure/trial_chambers/hallway/encounter_3.nbt +++ b/data/minecraft/structure/trial_chambers/hallway/encounter_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:74912de9226babeeeb58cb71d09e377f7e8de8908aff5ed197a5636b66a8c5b9 -size 5627 +oid sha256:31cbb99de5795191eaf3847ab77ca45a90eb3002235e825e5e2a73bbaba69997 +size 5626 diff --git a/data/minecraft/structure/trial_chambers/hallway/encounter_4.nbt b/data/minecraft/structure/trial_chambers/hallway/encounter_4.nbt index 9725d548..e496ff3e 100644 --- a/data/minecraft/structure/trial_chambers/hallway/encounter_4.nbt +++ b/data/minecraft/structure/trial_chambers/hallway/encounter_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b7cb8e2d139948cb7f222fac191faeee6ab9ceb8c1b09df1ee3a15f1f78ba3d2 -size 17905 +oid sha256:daa56c1b338bb8b72bbfdc41374cf126df1a814b24dff10eb3c28a09c5a1a0ff +size 17904 diff --git a/data/minecraft/structure/trial_chambers/hallway/encounter_5.nbt b/data/minecraft/structure/trial_chambers/hallway/encounter_5.nbt index c2047d0e..e1c88c94 100644 --- a/data/minecraft/structure/trial_chambers/hallway/encounter_5.nbt +++ b/data/minecraft/structure/trial_chambers/hallway/encounter_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1edc7480e4cd3b2048fe77f7ec7c3b2459bb295d12d531c8f5cbbb5bbe2066f7 +oid sha256:dd4d4fe3265b9be39e7dcb874d05e7585467889ddde6146833ac3552a722002e size 14322 diff --git a/data/minecraft/structure/trial_chambers/hallway/left_corner.nbt b/data/minecraft/structure/trial_chambers/hallway/left_corner.nbt index 9b5bae34..9db0b852 100644 --- a/data/minecraft/structure/trial_chambers/hallway/left_corner.nbt +++ b/data/minecraft/structure/trial_chambers/hallway/left_corner.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cfe4df9eb80c696c1f9d055070d8db76172241d0582a4a69876a2cf011f2b225 -size 938 +oid sha256:7c77f95a44261b44368177b1090c8bb1a90c041eee9cf80c498787e64f1fc32c +size 937 diff --git a/data/minecraft/structure/trial_chambers/hallway/long_straight_staircase.nbt b/data/minecraft/structure/trial_chambers/hallway/long_straight_staircase.nbt index cd6a6380..8c7ec6ea 100644 --- a/data/minecraft/structure/trial_chambers/hallway/long_straight_staircase.nbt +++ b/data/minecraft/structure/trial_chambers/hallway/long_straight_staircase.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:58602924e13100e221de1be9758c2e7aecb42adbec0e12c282faabd6195fed90 -size 2592 +oid sha256:19dee31ac10cc146aa7c9cb80e14868aa30235d121350b5d73a060aeb530f1e5 +size 2591 diff --git a/data/minecraft/structure/trial_chambers/hallway/long_straight_staircase_down.nbt b/data/minecraft/structure/trial_chambers/hallway/long_straight_staircase_down.nbt index dcaaa9b9..226fe93c 100644 --- a/data/minecraft/structure/trial_chambers/hallway/long_straight_staircase_down.nbt +++ b/data/minecraft/structure/trial_chambers/hallway/long_straight_staircase_down.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:36118de22ab8b3931020602e12806e9ab80a4d153244ce6ccbba6aa24a58ebf1 -size 2593 +oid sha256:adaf50f298b649b3b95254f5f2c5b15c51b70f14dd1ad20b363a6ef838cc5854 +size 2592 diff --git a/data/minecraft/structure/trial_chambers/hallway/lower_hallway_connector.nbt b/data/minecraft/structure/trial_chambers/hallway/lower_hallway_connector.nbt index 7d58b698..d53419c9 100644 --- a/data/minecraft/structure/trial_chambers/hallway/lower_hallway_connector.nbt +++ b/data/minecraft/structure/trial_chambers/hallway/lower_hallway_connector.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bb3a09705e173fad1c7e037299887dc2941e9c844d367d50a2af442e2a134eda -size 3185 +oid sha256:b304edb182e69b541a9c01b56a8f5adcf7f0c175a50360156a5560366bbb0344 +size 3184 diff --git a/data/minecraft/structure/trial_chambers/hallway/right_corner.nbt b/data/minecraft/structure/trial_chambers/hallway/right_corner.nbt index ac48cb52..181c9d8e 100644 --- a/data/minecraft/structure/trial_chambers/hallway/right_corner.nbt +++ b/data/minecraft/structure/trial_chambers/hallway/right_corner.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:20dcb1314358ed08192759565ac5505814b43f1184614f34fec3553fe1590327 -size 945 +oid sha256:867224ec17bc2429cc15beec2ea4d2d5874770850c6b75361f8c55c5634544a6 +size 944 diff --git a/data/minecraft/structure/trial_chambers/hallway/rubble.nbt b/data/minecraft/structure/trial_chambers/hallway/rubble.nbt index 7082da5c..35f72cdb 100644 --- a/data/minecraft/structure/trial_chambers/hallway/rubble.nbt +++ b/data/minecraft/structure/trial_chambers/hallway/rubble.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c136d877bc49076977edc149bdb32aa7ced631e724c5eda32759a820224e5592 -size 935 +oid sha256:6dc106f176c098c8a017ea347322aa7b8cabb2771b8940d1990e0f1b0edb6b66 +size 934 diff --git a/data/minecraft/structure/trial_chambers/hallway/rubble_chamber.nbt b/data/minecraft/structure/trial_chambers/hallway/rubble_chamber.nbt index 8c96f717..ceeb3849 100644 --- a/data/minecraft/structure/trial_chambers/hallway/rubble_chamber.nbt +++ b/data/minecraft/structure/trial_chambers/hallway/rubble_chamber.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:19c07b695c32d7ffbc07ec89759944815920ca8ff7e8ab256f6d10617cedd0b5 -size 925 +oid sha256:c9bddee332ec69adac54717cc8ea17d72da1ee50b5234a256a7b76d74715fbdb +size 924 diff --git a/data/minecraft/structure/trial_chambers/hallway/rubble_chamber_thin.nbt b/data/minecraft/structure/trial_chambers/hallway/rubble_chamber_thin.nbt index 2995fd80..a32f836f 100644 --- a/data/minecraft/structure/trial_chambers/hallway/rubble_chamber_thin.nbt +++ b/data/minecraft/structure/trial_chambers/hallway/rubble_chamber_thin.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2c5f7b34ecb1b7f27ef26c6ce731ef2cde2520b9ea845262244dc00a2259cd75 -size 471 +oid sha256:2f83c7a4c1d86d76749497168fa11f3b78fd458bf7de356afef2883e4569eec6 +size 470 diff --git a/data/minecraft/structure/trial_chambers/hallway/rubble_thin.nbt b/data/minecraft/structure/trial_chambers/hallway/rubble_thin.nbt index 2995fd80..a32f836f 100644 --- a/data/minecraft/structure/trial_chambers/hallway/rubble_thin.nbt +++ b/data/minecraft/structure/trial_chambers/hallway/rubble_thin.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2c5f7b34ecb1b7f27ef26c6ce731ef2cde2520b9ea845262244dc00a2259cd75 -size 471 +oid sha256:2f83c7a4c1d86d76749497168fa11f3b78fd458bf7de356afef2883e4569eec6 +size 470 diff --git a/data/minecraft/structure/trial_chambers/hallway/straight.nbt b/data/minecraft/structure/trial_chambers/hallway/straight.nbt index a07affc2..3413f7eb 100644 --- a/data/minecraft/structure/trial_chambers/hallway/straight.nbt +++ b/data/minecraft/structure/trial_chambers/hallway/straight.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0a96793326c8bd2a125dd5b7f4c192db9bd796cc99bffbb7ce89c57d85acb730 -size 932 +oid sha256:afe270798d8f320fc50c0c3e2ef451fc2b5d128ac6bd597c523822dccbd63562 +size 931 diff --git a/data/minecraft/structure/trial_chambers/hallway/straight_staircase.nbt b/data/minecraft/structure/trial_chambers/hallway/straight_staircase.nbt index 39b4f5e2..c50b7e08 100644 --- a/data/minecraft/structure/trial_chambers/hallway/straight_staircase.nbt +++ b/data/minecraft/structure/trial_chambers/hallway/straight_staircase.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e6885382e287827a0fca2e6da40f89b38313ec373a36bff6cf6bb094f51b0da9 -size 1177 +oid sha256:49f4ed8f8f25fc7c09cea1fa6b3e7b3087a1dae6a40bec5b93593a16a13a5293 +size 1176 diff --git a/data/minecraft/structure/trial_chambers/hallway/straight_staircase_down.nbt b/data/minecraft/structure/trial_chambers/hallway/straight_staircase_down.nbt index 8faf76ce..aadf4054 100644 --- a/data/minecraft/structure/trial_chambers/hallway/straight_staircase_down.nbt +++ b/data/minecraft/structure/trial_chambers/hallway/straight_staircase_down.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:89e49f9c0969ea801af47ce73c7679e93e69d28e4f5c2a3457eba07ec7aca806 +oid sha256:fc8fbced66963137461dce00d2a8d439bd161d92dad12b1638f0531a76145316 size 1176 diff --git a/data/minecraft/structure/trial_chambers/hallway/trapped_staircase.nbt b/data/minecraft/structure/trial_chambers/hallway/trapped_staircase.nbt index 85d2ecc1..80b60fe1 100644 --- a/data/minecraft/structure/trial_chambers/hallway/trapped_staircase.nbt +++ b/data/minecraft/structure/trial_chambers/hallway/trapped_staircase.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8c42073d31f4aac8ecde5ac5466a83a7f7bf64ffabcffac79ff367c6d62711a6 -size 3612 +oid sha256:d903bc8553c528c8e85572cdb31debe68e992046351fb5647e6ebb3ff25193ba +size 3611 diff --git a/data/minecraft/structure/trial_chambers/hallway/upper_hallway_connector.nbt b/data/minecraft/structure/trial_chambers/hallway/upper_hallway_connector.nbt index 231f1576..da926a1c 100644 --- a/data/minecraft/structure/trial_chambers/hallway/upper_hallway_connector.nbt +++ b/data/minecraft/structure/trial_chambers/hallway/upper_hallway_connector.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6e922cf15faf0154032fe5e0748183c827825a2beef2e010620d0bd397f8eedd -size 2699 +oid sha256:eeb700d6a9dfbdf65ff82f4f178638e753b230eb80bdcf1471a2c84c0ec30565 +size 2698 diff --git a/data/minecraft/structure/trial_chambers/intersection/intersection_1.nbt b/data/minecraft/structure/trial_chambers/intersection/intersection_1.nbt index c0017d42..5b573707 100644 --- a/data/minecraft/structure/trial_chambers/intersection/intersection_1.nbt +++ b/data/minecraft/structure/trial_chambers/intersection/intersection_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ff5b5a9fda5c0362614deb97df380b0540016186d315398bad1f18238f0a4fed -size 29421 +oid sha256:16820c7e266c7c131fc32ee3734e76c656dbd09e93e6282e2995a02c421f89e9 +size 29420 diff --git a/data/minecraft/structure/trial_chambers/intersection/intersection_2.nbt b/data/minecraft/structure/trial_chambers/intersection/intersection_2.nbt index 02397fbf..d4081d21 100644 --- a/data/minecraft/structure/trial_chambers/intersection/intersection_2.nbt +++ b/data/minecraft/structure/trial_chambers/intersection/intersection_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d1c10256f182937ee16d1ed924beb46ee85c161da49a0192921686fe227830b4 -size 30343 +oid sha256:8bce00ef4806b8891af7d7b343f582686dc2c6a0e3466b08f25392c37c1a1fdf +size 30342 diff --git a/data/minecraft/structure/trial_chambers/intersection/intersection_3.nbt b/data/minecraft/structure/trial_chambers/intersection/intersection_3.nbt index 41b62720..d84396db 100644 --- a/data/minecraft/structure/trial_chambers/intersection/intersection_3.nbt +++ b/data/minecraft/structure/trial_chambers/intersection/intersection_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3f27ae0c30caabbb022da12b8c208d979b7b555f5bbc89cb2bd8f3613ca7e31c -size 49355 +oid sha256:50dc35701e0602b177d4a4e39b81e4600d85b3dca2e9a5f8c5616361f13fca02 +size 49354 diff --git a/data/minecraft/structure/trial_chambers/reward/ominous_vault.nbt b/data/minecraft/structure/trial_chambers/reward/ominous_vault.nbt index 5f74fcf3..3da3946a 100644 --- a/data/minecraft/structure/trial_chambers/reward/ominous_vault.nbt +++ b/data/minecraft/structure/trial_chambers/reward/ominous_vault.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ccd9b5cae4d4a147742f9219db5534de16696ef7ff06e4eb1a37a7150d8fbbab -size 689 +oid sha256:d44c891b50e3631e6bbe77d32acc8f84210f0c8047208d1296a316f76804fb13 +size 688 diff --git a/data/minecraft/structure/trial_chambers/reward/vault.nbt b/data/minecraft/structure/trial_chambers/reward/vault.nbt index c90bdbea..8c7c5fa4 100644 --- a/data/minecraft/structure/trial_chambers/reward/vault.nbt +++ b/data/minecraft/structure/trial_chambers/reward/vault.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ecece75bbcba2cc04af08f9482c2bd47e0759f44b969321843b7cf511db78b6f -size 503 +oid sha256:4d6ad69a47446b11f8ed600976404daf54f2cee9beb0626e1be72fcfe105d7f8 +size 502 diff --git a/data/minecraft/structure/trial_chambers/spawner/breeze/breeze.nbt b/data/minecraft/structure/trial_chambers/spawner/breeze/breeze.nbt index 78c1ef26..2a0822df 100644 --- a/data/minecraft/structure/trial_chambers/spawner/breeze/breeze.nbt +++ b/data/minecraft/structure/trial_chambers/spawner/breeze/breeze.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:15126c46f1c0b1fd024789c4227be7f578aea667bec85ca99281444e60fe4c5f -size 468 +oid sha256:9831d6afe4934c61c85fb4865768c570d80ce83b82164b8c3c1b09cf06fd9a8a +size 467 diff --git a/data/minecraft/structure/trial_chambers/spawner/connectors/breeze.nbt b/data/minecraft/structure/trial_chambers/spawner/connectors/breeze.nbt index 29dab29a..31acb387 100644 --- a/data/minecraft/structure/trial_chambers/spawner/connectors/breeze.nbt +++ b/data/minecraft/structure/trial_chambers/spawner/connectors/breeze.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f2d380c78eaa96fa04173aa5da80b42c2b52a5a69c304c862a3a0431d21cc1b7 -size 327 +oid sha256:9ffa48c28a1d2f23417fbd12e1e6c3572055d4a2ab77804a8e72f2f0ce1ac960 +size 326 diff --git a/data/minecraft/structure/trial_chambers/spawner/connectors/melee.nbt b/data/minecraft/structure/trial_chambers/spawner/connectors/melee.nbt index f6f95dea..2e475379 100644 --- a/data/minecraft/structure/trial_chambers/spawner/connectors/melee.nbt +++ b/data/minecraft/structure/trial_chambers/spawner/connectors/melee.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:268c32b710322ffc13a5e38effc07eaad7e1242e0180381747901fd320d11690 -size 326 +oid sha256:470ebdb53876c915afd5c8badd9a83f970d3fecab6729b4d1a5f7bd3f9d5bd73 +size 325 diff --git a/data/minecraft/structure/trial_chambers/spawner/connectors/ranged.nbt b/data/minecraft/structure/trial_chambers/spawner/connectors/ranged.nbt index 06343459..d9de8bcb 100644 --- a/data/minecraft/structure/trial_chambers/spawner/connectors/ranged.nbt +++ b/data/minecraft/structure/trial_chambers/spawner/connectors/ranged.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:29169fb7fcc75fa8f46bfcc64e7e16fb7ac2baf4bcd691a6b6c57f39f9671d4f -size 326 +oid sha256:327219328db49bcdf05ecec0abdee71ffe315263ed7843c57b267777ee9305cf +size 325 diff --git a/data/minecraft/structure/trial_chambers/spawner/connectors/slow_ranged.nbt b/data/minecraft/structure/trial_chambers/spawner/connectors/slow_ranged.nbt index 8246b231..a7c7a760 100644 --- a/data/minecraft/structure/trial_chambers/spawner/connectors/slow_ranged.nbt +++ b/data/minecraft/structure/trial_chambers/spawner/connectors/slow_ranged.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:00eca32a346470f5eafb9e831994bd73f6fcbb0b20376728f1719dbccca8f35f -size 330 +oid sha256:b926b0fb2a0869efc4ba50514a347226a4b61b35d96998f41b27f99aab4a9c13 +size 329 diff --git a/data/minecraft/structure/trial_chambers/spawner/connectors/small_melee.nbt b/data/minecraft/structure/trial_chambers/spawner/connectors/small_melee.nbt index 20a26cbf..e2998968 100644 --- a/data/minecraft/structure/trial_chambers/spawner/connectors/small_melee.nbt +++ b/data/minecraft/structure/trial_chambers/spawner/connectors/small_melee.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ce03bda0b7ecb5172391e6a7aed5868e5c64f6efbc858f15afb858b521456ad1 -size 329 +oid sha256:df1837e97e8ca606130f3fccb6daa08ad9b9f75db9d352c60c494bc8447d9776 +size 328 diff --git a/data/minecraft/structure/trial_chambers/spawner/melee/husk.nbt b/data/minecraft/structure/trial_chambers/spawner/melee/husk.nbt index b75256ad..49c4714e 100644 --- a/data/minecraft/structure/trial_chambers/spawner/melee/husk.nbt +++ b/data/minecraft/structure/trial_chambers/spawner/melee/husk.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:28f88a1f3247004a41c1ca2bb768366d3b43a18435826448dd905106b449e167 -size 472 +oid sha256:0d77cbf4ffe0f60e697d061470af1a32f0d320c918313ea53514c5614e88f930 +size 471 diff --git a/data/minecraft/structure/trial_chambers/spawner/melee/spider.nbt b/data/minecraft/structure/trial_chambers/spawner/melee/spider.nbt index 925c1343..ded19382 100644 --- a/data/minecraft/structure/trial_chambers/spawner/melee/spider.nbt +++ b/data/minecraft/structure/trial_chambers/spawner/melee/spider.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e363ed4c9d80fa496a2a96954e49bffb24d7e7fa84c9350c7b2bfe421f6ff00b -size 479 +oid sha256:f28598488777600c192deb161cb2ce4298606c0399515c3dbc62609919535cb5 +size 478 diff --git a/data/minecraft/structure/trial_chambers/spawner/melee/zombie.nbt b/data/minecraft/structure/trial_chambers/spawner/melee/zombie.nbt index d3094cda..65b7fd25 100644 --- a/data/minecraft/structure/trial_chambers/spawner/melee/zombie.nbt +++ b/data/minecraft/structure/trial_chambers/spawner/melee/zombie.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c52c482f989a13ce45ea3e3bb7b5b11b2a934cdd2467e6acd6a7628a4dffa756 -size 478 +oid sha256:03743c7821a2b604293aabdd72910ccdcb85d62faf9200125cc6831c870e26e3 +size 477 diff --git a/data/minecraft/structure/trial_chambers/spawner/ranged/poison_skeleton.nbt b/data/minecraft/structure/trial_chambers/spawner/ranged/poison_skeleton.nbt index 2a5c04a8..6fa5ce90 100644 --- a/data/minecraft/structure/trial_chambers/spawner/ranged/poison_skeleton.nbt +++ b/data/minecraft/structure/trial_chambers/spawner/ranged/poison_skeleton.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4b9c6ab28a065fca3bcbe8a0ffab7a96317f61f9c8cd9a7d27292f4d9fbcd21f -size 523 +oid sha256:8c89bba892972111980b11eb739aaae8cd12e18ca7b2785eaf1afc1b7c969005 +size 522 diff --git a/data/minecraft/structure/trial_chambers/spawner/ranged/skeleton.nbt b/data/minecraft/structure/trial_chambers/spawner/ranged/skeleton.nbt index 15ead1e1..fce7b0e8 100644 --- a/data/minecraft/structure/trial_chambers/spawner/ranged/skeleton.nbt +++ b/data/minecraft/structure/trial_chambers/spawner/ranged/skeleton.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fd9b876bf8d9357ece313630201c54ae68e07abcc09860559c1cd757004a19a3 -size 478 +oid sha256:9ce9a6adf39647065f5c7d680460c2af59387b60320ab26e64b36b73bdc06253 +size 477 diff --git a/data/minecraft/structure/trial_chambers/spawner/ranged/stray.nbt b/data/minecraft/structure/trial_chambers/spawner/ranged/stray.nbt index 751a8d2b..38cccf49 100644 --- a/data/minecraft/structure/trial_chambers/spawner/ranged/stray.nbt +++ b/data/minecraft/structure/trial_chambers/spawner/ranged/stray.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2ae251a1ae496448b7e4a43a15166331bbf4f8f9d90b559264c9dac095e894bf -size 475 +oid sha256:82869ae35bcf67bf5a20e307eedcbdc09f5aa913f6a275ae0063246d1295faff +size 474 diff --git a/data/minecraft/structure/trial_chambers/spawner/slow_ranged/poison_skeleton.nbt b/data/minecraft/structure/trial_chambers/spawner/slow_ranged/poison_skeleton.nbt index 06030797..c5c486b8 100644 --- a/data/minecraft/structure/trial_chambers/spawner/slow_ranged/poison_skeleton.nbt +++ b/data/minecraft/structure/trial_chambers/spawner/slow_ranged/poison_skeleton.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:82f6db49dc620e263cb0275ee9d2c2402d8250a32009c54d0ed1bb4a24f0e3e5 -size 526 +oid sha256:fa596d25a93705f0848ee3140ce8bc526d07b3102853bc1f2244f87fc5b30fe3 +size 525 diff --git a/data/minecraft/structure/trial_chambers/spawner/slow_ranged/skeleton.nbt b/data/minecraft/structure/trial_chambers/spawner/slow_ranged/skeleton.nbt index 6a7874ba..8ea2d65b 100644 --- a/data/minecraft/structure/trial_chambers/spawner/slow_ranged/skeleton.nbt +++ b/data/minecraft/structure/trial_chambers/spawner/slow_ranged/skeleton.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:26696224255656b373c5cfa6b67b80659025c941fe71bf0c48b259d91a760fee -size 484 +oid sha256:9e3818737e04f272274f67c3172d2503651bb4f7a4fbfe649e8f7502259c94dc +size 483 diff --git a/data/minecraft/structure/trial_chambers/spawner/slow_ranged/stray.nbt b/data/minecraft/structure/trial_chambers/spawner/slow_ranged/stray.nbt index 9efe2efc..f4deccc4 100644 --- a/data/minecraft/structure/trial_chambers/spawner/slow_ranged/stray.nbt +++ b/data/minecraft/structure/trial_chambers/spawner/slow_ranged/stray.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:95f0b17fbac738e864b01c8c39b7eab0f1be79483389e71d03ae8a92bea16e94 -size 477 +oid sha256:a74c393d6892adc1353b33afb66cfd4bb8b1c21ce2e5a4f303eace583a535218 +size 476 diff --git a/data/minecraft/structure/trial_chambers/spawner/small_melee/baby_zombie.nbt b/data/minecraft/structure/trial_chambers/spawner/small_melee/baby_zombie.nbt index f722f392..b2d347ef 100644 --- a/data/minecraft/structure/trial_chambers/spawner/small_melee/baby_zombie.nbt +++ b/data/minecraft/structure/trial_chambers/spawner/small_melee/baby_zombie.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:928b7e7e46de7292ddfa954aacd781a336d4c35f8d0039ee3df571b7dede1d5a -size 498 +oid sha256:08c39b3d170eedad766169bb394bd48e53ae72737355ad0edef1abba31909189 +size 496 diff --git a/data/minecraft/structure/trial_chambers/spawner/small_melee/cave_spider.nbt b/data/minecraft/structure/trial_chambers/spawner/small_melee/cave_spider.nbt index 65721323..707a6b50 100644 --- a/data/minecraft/structure/trial_chambers/spawner/small_melee/cave_spider.nbt +++ b/data/minecraft/structure/trial_chambers/spawner/small_melee/cave_spider.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:58a06b67c4d62aceeee677b4fb1091396084f3078820ef92a2e545b6f5d0c095 +oid sha256:fa53186cad1047113eca1b428b1958b0c877a8f664e4ed84e7c1bf523c109235 size 521 diff --git a/data/minecraft/structure/trial_chambers/spawner/small_melee/silverfish.nbt b/data/minecraft/structure/trial_chambers/spawner/small_melee/silverfish.nbt index bea73306..0027baab 100644 --- a/data/minecraft/structure/trial_chambers/spawner/small_melee/silverfish.nbt +++ b/data/minecraft/structure/trial_chambers/spawner/small_melee/silverfish.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:add20fa9de3c726006260ba12863239f5db78e2bf1db07101140bc1447a9fc65 -size 482 +oid sha256:ceb6c6b34a383b561fbf2aea1b89122d606ff790d574c327e4195fcd102e183a +size 481 diff --git a/data/minecraft/structure/trial_chambers/spawner/small_melee/slime.nbt b/data/minecraft/structure/trial_chambers/spawner/small_melee/slime.nbt index 8c3d9784..9a8ef137 100644 --- a/data/minecraft/structure/trial_chambers/spawner/small_melee/slime.nbt +++ b/data/minecraft/structure/trial_chambers/spawner/small_melee/slime.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:75ca1d53cae05220e03f94435b01329935fc3084fb3cb496d106bfbc66081e97 -size 472 +oid sha256:d86184d1308daf4803739b855f9cde4625dedd5c725e57adcc9021d7a7367852 +size 471 diff --git a/data/minecraft/structure/underwater_ruin/big_brick_1.nbt b/data/minecraft/structure/underwater_ruin/big_brick_1.nbt index f6edc987..4affcf0c 100644 --- a/data/minecraft/structure/underwater_ruin/big_brick_1.nbt +++ b/data/minecraft/structure/underwater_ruin/big_brick_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3cecd2549fe9881bd27c20807d094b1e57a5821c3daff04f2d4a7731a66adfe3 +oid sha256:f045a400864bc9ef39e29e7680e361fc3df3f02736b21710d0ed25f828e1e210 size 11112 diff --git a/data/minecraft/structure/underwater_ruin/big_brick_2.nbt b/data/minecraft/structure/underwater_ruin/big_brick_2.nbt index ec6818dd..1ec49fce 100644 --- a/data/minecraft/structure/underwater_ruin/big_brick_2.nbt +++ b/data/minecraft/structure/underwater_ruin/big_brick_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5839fc482fc84d1d34c476392a5b08515b8bc25d3ae0eed8f40a4bac127b8162 +oid sha256:a3dcca0288917157124ddaeadc416765fb2f1c9b234d1d89263c5191e33abb64 size 11460 diff --git a/data/minecraft/structure/underwater_ruin/big_brick_3.nbt b/data/minecraft/structure/underwater_ruin/big_brick_3.nbt index 59d18195..40b8a401 100644 --- a/data/minecraft/structure/underwater_ruin/big_brick_3.nbt +++ b/data/minecraft/structure/underwater_ruin/big_brick_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:65e04e35a5dbacb03232f8c3157a11a60cb608245b607f43016cd88b548d59e5 +oid sha256:93d68043bf5364759cad6c11466be1ccde3a75dc70b1e3dd89e0577a7f62b9fe size 11631 diff --git a/data/minecraft/structure/underwater_ruin/big_brick_8.nbt b/data/minecraft/structure/underwater_ruin/big_brick_8.nbt index 67ad8bad..3a3bcba4 100644 --- a/data/minecraft/structure/underwater_ruin/big_brick_8.nbt +++ b/data/minecraft/structure/underwater_ruin/big_brick_8.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2024f279b1d955b3f1c3aaa9ac8b63ce89b38a134c6511375be480ac71d8cee1 +oid sha256:4331ea5b7c716171af105865e3a6b79fd570b678927df337e436ac6631abf8ed size 11013 diff --git a/data/minecraft/structure/underwater_ruin/big_cracked_1.nbt b/data/minecraft/structure/underwater_ruin/big_cracked_1.nbt index d80f613e..a9d0a3a2 100644 --- a/data/minecraft/structure/underwater_ruin/big_cracked_1.nbt +++ b/data/minecraft/structure/underwater_ruin/big_cracked_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:675263032b91a89791b59100b67f92c4722d230e81d098fe317cba8038f668f3 +oid sha256:27255b36309d2afedeb0e4d993dedb0c5b4f145406710ce8ecc249c86d481103 size 11096 diff --git a/data/minecraft/structure/underwater_ruin/big_cracked_2.nbt b/data/minecraft/structure/underwater_ruin/big_cracked_2.nbt index 0fea6dbc..bc142fa9 100644 --- a/data/minecraft/structure/underwater_ruin/big_cracked_2.nbt +++ b/data/minecraft/structure/underwater_ruin/big_cracked_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d03292a881a2cd08f9883ffe84a7806e36e07ee770a7e5e864f59e76f6b2b942 +oid sha256:8e129733486a1a9abc91c3c86d71fbdcee961c8d75ecf9285f3c62a4e8af96b1 size 11503 diff --git a/data/minecraft/structure/underwater_ruin/big_cracked_3.nbt b/data/minecraft/structure/underwater_ruin/big_cracked_3.nbt index e19ce3bd..edf29482 100644 --- a/data/minecraft/structure/underwater_ruin/big_cracked_3.nbt +++ b/data/minecraft/structure/underwater_ruin/big_cracked_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dfc7f13482a415c316e7eb6f96e5c96f47670dcacd279812ac12c7d7e5e10781 +oid sha256:286f72eb5433e64a9b4a3642bb0b117e047953714c7de4b26165e391c033a690 size 11620 diff --git a/data/minecraft/structure/underwater_ruin/big_cracked_8.nbt b/data/minecraft/structure/underwater_ruin/big_cracked_8.nbt index b6a5efeb..525276a6 100644 --- a/data/minecraft/structure/underwater_ruin/big_cracked_8.nbt +++ b/data/minecraft/structure/underwater_ruin/big_cracked_8.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:36d0cd1cc3fc29c2947ffbda6a6b59e9151f54eb997a7cfb49a96264155a2667 +oid sha256:204fbefa5d5fba0069c2956b2abf2f4643e53f48aa8cf605a5fc30dd72bacd55 size 11022 diff --git a/data/minecraft/structure/underwater_ruin/big_mossy_1.nbt b/data/minecraft/structure/underwater_ruin/big_mossy_1.nbt index 108c52d8..6facecd7 100644 --- a/data/minecraft/structure/underwater_ruin/big_mossy_1.nbt +++ b/data/minecraft/structure/underwater_ruin/big_mossy_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:08017b926f46ef6168e8d34a8833f22d45a118013815e9f9b131b212fbe70ac0 +oid sha256:32d2f2aa58884532778b86d5741bb59e5cd5a7a56ca559d02d1e6867af96630b size 11094 diff --git a/data/minecraft/structure/underwater_ruin/big_mossy_2.nbt b/data/minecraft/structure/underwater_ruin/big_mossy_2.nbt index 2c199339..e09894cc 100644 --- a/data/minecraft/structure/underwater_ruin/big_mossy_2.nbt +++ b/data/minecraft/structure/underwater_ruin/big_mossy_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9293cdd8ba8e46420446b5de71c7f3623606ead29b6d06d6ad4046663006fe3a +oid sha256:acae2cbec8fa5d078e1404601c3efef1fd5823cdeee0a9b0528bc66be88797e3 size 11503 diff --git a/data/minecraft/structure/underwater_ruin/big_mossy_3.nbt b/data/minecraft/structure/underwater_ruin/big_mossy_3.nbt index b78e2f65..b069383e 100644 --- a/data/minecraft/structure/underwater_ruin/big_mossy_3.nbt +++ b/data/minecraft/structure/underwater_ruin/big_mossy_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c6b714658c68c6c6014d2aab56f4b7885900af097624c06a867aaf11485409c7 +oid sha256:de19c3986b690744378c680b2afe56ed00db39fe470eb7b1ab34768f3c0e5b59 size 11631 diff --git a/data/minecraft/structure/underwater_ruin/big_mossy_8.nbt b/data/minecraft/structure/underwater_ruin/big_mossy_8.nbt index da592d3e..655f2f0f 100644 --- a/data/minecraft/structure/underwater_ruin/big_mossy_8.nbt +++ b/data/minecraft/structure/underwater_ruin/big_mossy_8.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c1f5430e055df7b75f9c02c42b59662f0cae7777e44ac36f044dd5e63667ac98 +oid sha256:95ce92710887f55b5533dad7e66655c50cb73ace41348586b63986886356bead size 11044 diff --git a/data/minecraft/structure/underwater_ruin/big_warm_4.nbt b/data/minecraft/structure/underwater_ruin/big_warm_4.nbt index f9ffc061..8885fa68 100644 --- a/data/minecraft/structure/underwater_ruin/big_warm_4.nbt +++ b/data/minecraft/structure/underwater_ruin/big_warm_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:820fe1b4e02f537aa7986c25a1ca3359bd889427c6cd3d97d102b1b0a010eb98 +oid sha256:7fe26b0e3095b1880d4806263050f0d152cb3b6c8f0952bef83b9cca778c0ff6 size 11265 diff --git a/data/minecraft/structure/underwater_ruin/big_warm_5.nbt b/data/minecraft/structure/underwater_ruin/big_warm_5.nbt index 52f3a74e..84307164 100644 --- a/data/minecraft/structure/underwater_ruin/big_warm_5.nbt +++ b/data/minecraft/structure/underwater_ruin/big_warm_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d7e9e123a390ce4cd4419438638336d390c9404750542a33089b807b3307f505 +oid sha256:46042b5fb9c424d7e842edcf1bb1bbb2adf17972637b5a95f6c74df30efa95b9 size 11032 diff --git a/data/minecraft/structure/underwater_ruin/big_warm_6.nbt b/data/minecraft/structure/underwater_ruin/big_warm_6.nbt index 86d6b8e2..6fd161a6 100644 --- a/data/minecraft/structure/underwater_ruin/big_warm_6.nbt +++ b/data/minecraft/structure/underwater_ruin/big_warm_6.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9c33e96dd5cf77593632fe4a21b550380fd7520189fdeb270e63b2cdfd0a6258 +oid sha256:bf080b71230365292a583de5ef286bcc33138bd1307841101e0a4c3a7ba7f4c9 size 11106 diff --git a/data/minecraft/structure/underwater_ruin/big_warm_7.nbt b/data/minecraft/structure/underwater_ruin/big_warm_7.nbt index 4a7f3430..dd074599 100644 --- a/data/minecraft/structure/underwater_ruin/big_warm_7.nbt +++ b/data/minecraft/structure/underwater_ruin/big_warm_7.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:135da58558854211b9c509d64f9f8222aee90d50dd5d134928deabeb437bd120 +oid sha256:6d4bbae4e8347116280cd3032adb8de35ea328912d5c056f5df42f32d7744542 size 11139 diff --git a/data/minecraft/structure/underwater_ruin/brick_1.nbt b/data/minecraft/structure/underwater_ruin/brick_1.nbt index efa33395..fe4f5b97 100644 --- a/data/minecraft/structure/underwater_ruin/brick_1.nbt +++ b/data/minecraft/structure/underwater_ruin/brick_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7b5ff572831885260ca587224cd6d189ccf3a25779a754900f6403bb2124c6c5 +oid sha256:6f95c7b46da0064896db241b172d5419e879cc0c1e00225091bb33b48972a320 size 1268 diff --git a/data/minecraft/structure/underwater_ruin/brick_2.nbt b/data/minecraft/structure/underwater_ruin/brick_2.nbt index 81096103..ae0551bc 100644 --- a/data/minecraft/structure/underwater_ruin/brick_2.nbt +++ b/data/minecraft/structure/underwater_ruin/brick_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4476eeafb0d3bc73da7e61315bc71e001c6ffda69af41f0a1359cfd438b3477d +oid sha256:f9ba74569a726972e8a5b27a746174e9e9a63d9aa4df8855a08421e50b83798e size 1259 diff --git a/data/minecraft/structure/underwater_ruin/brick_3.nbt b/data/minecraft/structure/underwater_ruin/brick_3.nbt index 89df480a..94b5a6b3 100644 --- a/data/minecraft/structure/underwater_ruin/brick_3.nbt +++ b/data/minecraft/structure/underwater_ruin/brick_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f928b4eb56588d11988e04149c809985e6cbfeb9484a34578267dcc1057ffadc +oid sha256:1948cbb5a322de6d30e5e244dea29666e612a4b32e12f9f1710e32109526aa9e size 1318 diff --git a/data/minecraft/structure/underwater_ruin/brick_4.nbt b/data/minecraft/structure/underwater_ruin/brick_4.nbt index f86ec0a4..668a14ee 100644 --- a/data/minecraft/structure/underwater_ruin/brick_4.nbt +++ b/data/minecraft/structure/underwater_ruin/brick_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:be263399eec21de0bff336546c0f68d491f1e06f1002fd7f7998b3d6ff890b75 +oid sha256:bff851c096bd887141df8491f8ff6bdaacd650bcf5c5f3e005fa386d94545156 size 1295 diff --git a/data/minecraft/structure/underwater_ruin/brick_5.nbt b/data/minecraft/structure/underwater_ruin/brick_5.nbt index e5372a07..adbcfe49 100644 --- a/data/minecraft/structure/underwater_ruin/brick_5.nbt +++ b/data/minecraft/structure/underwater_ruin/brick_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3d8e41f809c728e58e66e8155a877172da30e63c0bba03042bf1154f9a0fea9c +oid sha256:0272f9f8fcde5597ef8146248809063f87ca31e93bdcbb599930dcbed1f7fb74 size 1275 diff --git a/data/minecraft/structure/underwater_ruin/brick_6.nbt b/data/minecraft/structure/underwater_ruin/brick_6.nbt index 926c809b..80b95030 100644 --- a/data/minecraft/structure/underwater_ruin/brick_6.nbt +++ b/data/minecraft/structure/underwater_ruin/brick_6.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c9a3c9cd89bd6e5f9714dc480c43e42cc3d13760cb68de62bbb3c9a0ccdde567 +oid sha256:5699426b1f9e291f1f4835becffdb61e9d7998b9ff7e8bfa141b8007762aae80 size 1467 diff --git a/data/minecraft/structure/underwater_ruin/brick_7.nbt b/data/minecraft/structure/underwater_ruin/brick_7.nbt index 95da0c31..761d9342 100644 --- a/data/minecraft/structure/underwater_ruin/brick_7.nbt +++ b/data/minecraft/structure/underwater_ruin/brick_7.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bf5d077c6c35bc1d3efcfde7d4d485df5833adf2274b37b7c7120d86e95223a5 +oid sha256:03fd6f891cea0913fa6ce808876835a67ec2e3d1019226e24a549d4417f22116 size 1292 diff --git a/data/minecraft/structure/underwater_ruin/brick_8.nbt b/data/minecraft/structure/underwater_ruin/brick_8.nbt index 11ab4cb7..2cf94645 100644 --- a/data/minecraft/structure/underwater_ruin/brick_8.nbt +++ b/data/minecraft/structure/underwater_ruin/brick_8.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:82e2a4f8d324293e8d9733b4943faa38fb30a47f067d656548eaeaf3e270c0c3 +oid sha256:2783f7cf4852fd723c9d5c3214176792285cf675b86cc2ab762a5458ec61f858 size 1304 diff --git a/data/minecraft/structure/underwater_ruin/cracked_1.nbt b/data/minecraft/structure/underwater_ruin/cracked_1.nbt index 06c5b98c..f8b92524 100644 --- a/data/minecraft/structure/underwater_ruin/cracked_1.nbt +++ b/data/minecraft/structure/underwater_ruin/cracked_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d11d4c5fac5c5dc0906a463f8edb8f941d970f2edfbf299a5876596ace90d3b9 +oid sha256:8bc4915c20ce4db2b3b40cd431eb0e09510a071160aeb9c2adb10d9397cb8a9e size 1264 diff --git a/data/minecraft/structure/underwater_ruin/cracked_2.nbt b/data/minecraft/structure/underwater_ruin/cracked_2.nbt index b218b9c7..f7e7544e 100644 --- a/data/minecraft/structure/underwater_ruin/cracked_2.nbt +++ b/data/minecraft/structure/underwater_ruin/cracked_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3f68efd02940bd163f1e6f6a47c799c958992f3227244b0d26d8f0581b898b73 +oid sha256:986e5e668f947d155a7221901386926cbc55c0744a07537348b590c45b8ebcb6 size 1257 diff --git a/data/minecraft/structure/underwater_ruin/cracked_3.nbt b/data/minecraft/structure/underwater_ruin/cracked_3.nbt index 538cdb67..4b389e03 100644 --- a/data/minecraft/structure/underwater_ruin/cracked_3.nbt +++ b/data/minecraft/structure/underwater_ruin/cracked_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:035ba7474fcb4c1c3ed2a2f1305cc4490923eec0de97daeafd33e146c45bd8bb +oid sha256:3f4fda94a5ff672bc12beabbf50b2a9c09f7e338f193323713e5ad9c0e5a7f21 size 1346 diff --git a/data/minecraft/structure/underwater_ruin/cracked_4.nbt b/data/minecraft/structure/underwater_ruin/cracked_4.nbt index 88de94a8..d65e0533 100644 --- a/data/minecraft/structure/underwater_ruin/cracked_4.nbt +++ b/data/minecraft/structure/underwater_ruin/cracked_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:be35a5e5f5c6af7f5bee62de9254f50c2bed07777fbacac58e44a8f6b38c3459 +oid sha256:9fae62c39ba0921580035742446306e285788c63fb03ad3e72d0491dc9726dbc size 1255 diff --git a/data/minecraft/structure/underwater_ruin/cracked_5.nbt b/data/minecraft/structure/underwater_ruin/cracked_5.nbt index 9e4568f9..b8da943f 100644 --- a/data/minecraft/structure/underwater_ruin/cracked_5.nbt +++ b/data/minecraft/structure/underwater_ruin/cracked_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:10bc3c63233c21a8c3d5b178a6be2f4b024e43c8ddb1142b7bacaba30044645b +oid sha256:3edcd8bcb46c362536ee8bf0e49b432f11de93b46ea3adabcee6dc214d675021 size 1280 diff --git a/data/minecraft/structure/underwater_ruin/cracked_6.nbt b/data/minecraft/structure/underwater_ruin/cracked_6.nbt index 1e188e6f..cad4cb1a 100644 --- a/data/minecraft/structure/underwater_ruin/cracked_6.nbt +++ b/data/minecraft/structure/underwater_ruin/cracked_6.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:af1756004d4560464e4b62a0d41f06069601cb588cadfd70de4374597bbb5a24 +oid sha256:4becc02be1070be6650aab3bcb3323350baf38140a6ffc9bd009a301a1d32b29 size 1408 diff --git a/data/minecraft/structure/underwater_ruin/cracked_7.nbt b/data/minecraft/structure/underwater_ruin/cracked_7.nbt index 01526f87..6e798f56 100644 --- a/data/minecraft/structure/underwater_ruin/cracked_7.nbt +++ b/data/minecraft/structure/underwater_ruin/cracked_7.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c19aaeea67e9fe651c8705fb9034011bcc762b488442357a16d2962cfc63bc8a +oid sha256:3e628f958b4b415aa86141ddd9c4ddaac359989ea5e0cf141ad2aa92c32ba4ec size 1313 diff --git a/data/minecraft/structure/underwater_ruin/cracked_8.nbt b/data/minecraft/structure/underwater_ruin/cracked_8.nbt index bacb3f0f..1e77dd46 100644 --- a/data/minecraft/structure/underwater_ruin/cracked_8.nbt +++ b/data/minecraft/structure/underwater_ruin/cracked_8.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4f9c93d3f2630eccee34683836b564e2f1d1e2673c09ab38f4c95683bb91c37d +oid sha256:0e863ac2031bfcd9c4f5a4e1a64df665db657e82362eb1bb31c2503ff4576b69 size 1292 diff --git a/data/minecraft/structure/underwater_ruin/mossy_1.nbt b/data/minecraft/structure/underwater_ruin/mossy_1.nbt index bf7e948e..3a4f98b5 100644 --- a/data/minecraft/structure/underwater_ruin/mossy_1.nbt +++ b/data/minecraft/structure/underwater_ruin/mossy_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ed08be6cc04db1ff507dd1f65693b992c67839c9bcc38fb86839c212475d9812 +oid sha256:beb1b4a94c1f6a55d4ac0ba9bfbb00ec6a39da71f1ec43688f8df9b112844f22 size 1277 diff --git a/data/minecraft/structure/underwater_ruin/mossy_2.nbt b/data/minecraft/structure/underwater_ruin/mossy_2.nbt index 4fc07882..128092fb 100644 --- a/data/minecraft/structure/underwater_ruin/mossy_2.nbt +++ b/data/minecraft/structure/underwater_ruin/mossy_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:835bf45ededc96121eba9d451df0cef790e43e9d5492896e7f2893f3d6f4f6be +oid sha256:2ac42a4a4758da012c698d1b2673bd8d7b25913adcbb8be33f6d19654accca09 size 1232 diff --git a/data/minecraft/structure/underwater_ruin/mossy_3.nbt b/data/minecraft/structure/underwater_ruin/mossy_3.nbt index 2ea8ce81..9683d3c7 100644 --- a/data/minecraft/structure/underwater_ruin/mossy_3.nbt +++ b/data/minecraft/structure/underwater_ruin/mossy_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0988fb9585048b94386b41b175a188366b39a40befddd8435db5faf7bfadbf8f +oid sha256:d9eaa08aa39071cfbbf68d6dd7a64d27ee0675b04fec68170ca620cad7ee25f1 size 1322 diff --git a/data/minecraft/structure/underwater_ruin/mossy_4.nbt b/data/minecraft/structure/underwater_ruin/mossy_4.nbt index a194e801..13c140c7 100644 --- a/data/minecraft/structure/underwater_ruin/mossy_4.nbt +++ b/data/minecraft/structure/underwater_ruin/mossy_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:90f14b6f81a30ef492daec8d4ca7ff1bcfec602b328aa11616d720d4933fc1fe +oid sha256:976407ef87a7dc7e2aa9c865651829c98e9fd7537073ed4473f290edfd0f5385 size 1281 diff --git a/data/minecraft/structure/underwater_ruin/mossy_5.nbt b/data/minecraft/structure/underwater_ruin/mossy_5.nbt index 165cec64..ae74c224 100644 --- a/data/minecraft/structure/underwater_ruin/mossy_5.nbt +++ b/data/minecraft/structure/underwater_ruin/mossy_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:20800ab665bfb3938b80407be8e2eab64ea1b8160143bbd3f77f386ce311a812 +oid sha256:09ed2651beea55609190c806fc256128d6c414c2f6f3c3585c846e65e7a2d23b size 1298 diff --git a/data/minecraft/structure/underwater_ruin/mossy_6.nbt b/data/minecraft/structure/underwater_ruin/mossy_6.nbt index 37ad0320..b7f7249d 100644 --- a/data/minecraft/structure/underwater_ruin/mossy_6.nbt +++ b/data/minecraft/structure/underwater_ruin/mossy_6.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9025db0d9aeb4e568961b5a7454c5bbd7de7c98c020c79c5d7b29bceeb19b602 +oid sha256:381111cfafb06310c616c97b57cff090fe85e49fb9e18d24fb3fa18002cb65cf size 1451 diff --git a/data/minecraft/structure/underwater_ruin/mossy_7.nbt b/data/minecraft/structure/underwater_ruin/mossy_7.nbt index c0bf4e7d..e5a3d324 100644 --- a/data/minecraft/structure/underwater_ruin/mossy_7.nbt +++ b/data/minecraft/structure/underwater_ruin/mossy_7.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e5e28071344074f7a87641562835c2617d6c1bd2b046528f12efac7064a4a175 +oid sha256:7b2e1466cb74aab95b00d35fe4d947cb481c8ae8f70be234939f49a7002d9dd3 size 1309 diff --git a/data/minecraft/structure/underwater_ruin/mossy_8.nbt b/data/minecraft/structure/underwater_ruin/mossy_8.nbt index 19da9da7..1eb5ea71 100644 --- a/data/minecraft/structure/underwater_ruin/mossy_8.nbt +++ b/data/minecraft/structure/underwater_ruin/mossy_8.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:481f604e99ccc484e3f69826f49df0c60afb718be7a42129522592c0a393ef63 +oid sha256:ea9b50291ba6b644c71b9ddf7de0b0396d51e008c99edafc6bb8153a11dc5f57 size 1320 diff --git a/data/minecraft/structure/underwater_ruin/warm_1.nbt b/data/minecraft/structure/underwater_ruin/warm_1.nbt index 7da1900a..28198f4d 100644 --- a/data/minecraft/structure/underwater_ruin/warm_1.nbt +++ b/data/minecraft/structure/underwater_ruin/warm_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b0b86b551df5218aa5b5dd008bb899eda2fd33613ef3a3fa5e8922a02059b62f +oid sha256:182c965abc232f84e5cfe82967253ab3e2773766d113aad933bc2b7496ef8a55 size 1268 diff --git a/data/minecraft/structure/underwater_ruin/warm_2.nbt b/data/minecraft/structure/underwater_ruin/warm_2.nbt index 62067053..5256f765 100644 --- a/data/minecraft/structure/underwater_ruin/warm_2.nbt +++ b/data/minecraft/structure/underwater_ruin/warm_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4e8f138e6c1715a3517fcce2612877463913edfac415961b0767d9b76dc52c33 +oid sha256:69075465d6a5a1bd92e4c907ea6c0b2499e1691361cb1de22555587f67ddd44b size 1297 diff --git a/data/minecraft/structure/underwater_ruin/warm_3.nbt b/data/minecraft/structure/underwater_ruin/warm_3.nbt index 3151b975..e6b1475f 100644 --- a/data/minecraft/structure/underwater_ruin/warm_3.nbt +++ b/data/minecraft/structure/underwater_ruin/warm_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7b97e9b064bae03fbbb2f4a9e75dfd3fe44d9ba62f2c239080345edaf23e0c3a +oid sha256:72f6425b92465722a78327c5069e670300e430386928c9fc12488f5811c9f920 size 1271 diff --git a/data/minecraft/structure/underwater_ruin/warm_4.nbt b/data/minecraft/structure/underwater_ruin/warm_4.nbt index 32f2f2ed..e118d256 100644 --- a/data/minecraft/structure/underwater_ruin/warm_4.nbt +++ b/data/minecraft/structure/underwater_ruin/warm_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6cd89227b624dc9c2dc93efdc1ed810c1d7477738744298f2bdfcbb4abe7314e +oid sha256:42214d4f966156103bc6e88a9f8180a83bad2d5f45487abb639a66f0356e859f size 1347 diff --git a/data/minecraft/structure/underwater_ruin/warm_5.nbt b/data/minecraft/structure/underwater_ruin/warm_5.nbt index 2cd2fece..95a12db7 100644 --- a/data/minecraft/structure/underwater_ruin/warm_5.nbt +++ b/data/minecraft/structure/underwater_ruin/warm_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c3f1139ee01dce4312eb467e46f00167c9ec53d73b3ceee25e534910f24044bc +oid sha256:5bf52b9e646569250c5cd27c80ed7b982f848ec84e8e158e093993787c0e32b3 size 1225 diff --git a/data/minecraft/structure/underwater_ruin/warm_6.nbt b/data/minecraft/structure/underwater_ruin/warm_6.nbt index 5e93bafa..7eb322bc 100644 --- a/data/minecraft/structure/underwater_ruin/warm_6.nbt +++ b/data/minecraft/structure/underwater_ruin/warm_6.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a117e098135c08c68ce2f01ed78b7932ef0524feb9f4443b64f39f5a3d2a486b +oid sha256:364617907c9c4d5b4c1a639722a7b28305e72f23b26b3f47b68ab36d5e6334cf size 1270 diff --git a/data/minecraft/structure/underwater_ruin/warm_7.nbt b/data/minecraft/structure/underwater_ruin/warm_7.nbt index a9539468..00d37c38 100644 --- a/data/minecraft/structure/underwater_ruin/warm_7.nbt +++ b/data/minecraft/structure/underwater_ruin/warm_7.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:da13acbc10d90ebf8c77790b9c4908fac0500a800130258a6ef5060e6fdbc06b +oid sha256:192bcbca8ca196e1749f32e403f185fdafb6390425c73f26681130cebaef8b41 size 1209 diff --git a/data/minecraft/structure/underwater_ruin/warm_8.nbt b/data/minecraft/structure/underwater_ruin/warm_8.nbt index 785d54f5..482e033b 100644 --- a/data/minecraft/structure/underwater_ruin/warm_8.nbt +++ b/data/minecraft/structure/underwater_ruin/warm_8.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f2eaf67e7df2c20f9d2db86eba3cc9cbddadf7c79b34235d43a5e2fced5de9c3 +oid sha256:3b7e66eda7143cc023d490cd9e8cb5266ec18efee4e43c926df99e97708aa2c1 size 1339 diff --git a/data/minecraft/structure/village/common/animals/cat_black.nbt b/data/minecraft/structure/village/common/animals/cat_black.nbt index f301ea73..4d581437 100644 --- a/data/minecraft/structure/village/common/animals/cat_black.nbt +++ b/data/minecraft/structure/village/common/animals/cat_black.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f715ef7ddb8a21eea701373e0bb2245b665ba3f31adba1f6e9e687e56f654060 +oid sha256:785f32e9750d452998870775e4b7f3890ef950541b101f2b773171d0ce26f176 size 892 diff --git a/data/minecraft/structure/village/common/animals/cat_british.nbt b/data/minecraft/structure/village/common/animals/cat_british.nbt index 09808273..3de8c01f 100644 --- a/data/minecraft/structure/village/common/animals/cat_british.nbt +++ b/data/minecraft/structure/village/common/animals/cat_british.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6e67ac6ec46972ee097cc7cf6c49edfd324a15ba9c0bbf19aac00afd32970fc8 +oid sha256:275a187b65b84cc9cf39ddef0f42ee34e4dce2d471abc8fdad42d9840a872499 size 901 diff --git a/data/minecraft/structure/village/common/animals/cat_calico.nbt b/data/minecraft/structure/village/common/animals/cat_calico.nbt index c5fc6443..8bb567b6 100644 --- a/data/minecraft/structure/village/common/animals/cat_calico.nbt +++ b/data/minecraft/structure/village/common/animals/cat_calico.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:36473690474e5faa6383dae48ba29267d6dbc7963f31fea9106d6bcc2efed144 +oid sha256:6c0b3c4ef19c079c676a4f334373b7305809423feaf4f5b5f6be72c3002568f7 size 826 diff --git a/data/minecraft/structure/village/common/animals/cat_jellie.nbt b/data/minecraft/structure/village/common/animals/cat_jellie.nbt index 2629d978..eadc858b 100644 --- a/data/minecraft/structure/village/common/animals/cat_jellie.nbt +++ b/data/minecraft/structure/village/common/animals/cat_jellie.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:96c58751c4ec5da8fcbfc230ba1dc632d21f7e8bd3075df29e432922e53be176 +oid sha256:ad3808ac67cb6aac761540d856c0804778d3bb139b8dc43894cc2dae0119ee39 size 897 diff --git a/data/minecraft/structure/village/common/animals/cat_persian.nbt b/data/minecraft/structure/village/common/animals/cat_persian.nbt index 51686093..567a2923 100644 --- a/data/minecraft/structure/village/common/animals/cat_persian.nbt +++ b/data/minecraft/structure/village/common/animals/cat_persian.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d556e357c7547926f5db0b78c17cc24b286adb1d89044c204dfcd80acdc4439e +oid sha256:1126a8f5d7dd0f108e4cd98409f92d6ab57f0d61db1e212861e76fd6f5016059 size 828 diff --git a/data/minecraft/structure/village/common/animals/cat_ragdoll.nbt b/data/minecraft/structure/village/common/animals/cat_ragdoll.nbt index eba4a11a..f33057c5 100644 --- a/data/minecraft/structure/village/common/animals/cat_ragdoll.nbt +++ b/data/minecraft/structure/village/common/animals/cat_ragdoll.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:40639f5de44a0456a52c0c87817184885e1b453840a7cc3fb0688184529948d2 +oid sha256:d686f6384d6030a1376da18f32063c209d9a481d621d103703c6765b90bdbbb1 size 891 diff --git a/data/minecraft/structure/village/common/animals/cat_red.nbt b/data/minecraft/structure/village/common/animals/cat_red.nbt index f44a170b..67ad9b13 100644 --- a/data/minecraft/structure/village/common/animals/cat_red.nbt +++ b/data/minecraft/structure/village/common/animals/cat_red.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a7da2592124e77c444de4f3dcbc769b29a789ade8f55aba7596b223c0e924a9a -size 810 +oid sha256:71855b2f1ad87f0ef00f90a67eab0022dd1a7bbc5b76f9de8bb3489af951a91b +size 811 diff --git a/data/minecraft/structure/village/common/animals/cat_siamese.nbt b/data/minecraft/structure/village/common/animals/cat_siamese.nbt index a44a2a40..2d31179f 100644 --- a/data/minecraft/structure/village/common/animals/cat_siamese.nbt +++ b/data/minecraft/structure/village/common/animals/cat_siamese.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f90a2ab6d565c5fdf28e13043ab5239bb4ee9cb4eb12db9583c0b5186b37bdaf -size 818 +oid sha256:6b4b001fb50ae2df99c1281bb08122e1c9240f8de9599230458d55e1b8741968 +size 817 diff --git a/data/minecraft/structure/village/common/animals/cat_tabby.nbt b/data/minecraft/structure/village/common/animals/cat_tabby.nbt index ec770aff..b15c5ec5 100644 --- a/data/minecraft/structure/village/common/animals/cat_tabby.nbt +++ b/data/minecraft/structure/village/common/animals/cat_tabby.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4e5317274c0fccc79c8d74203aa5acbabbe66a3979398ee4fd1c1278744d68b5 +oid sha256:d6d6b024a5eaf09b2f5be40b1ee567421a821c2e2b10d3c7499321a1041c0f8d size 888 diff --git a/data/minecraft/structure/village/common/animals/cat_white.nbt b/data/minecraft/structure/village/common/animals/cat_white.nbt index 87d70876..2b85122b 100644 --- a/data/minecraft/structure/village/common/animals/cat_white.nbt +++ b/data/minecraft/structure/village/common/animals/cat_white.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1970f7c54afe5a0cd7feaad0b97387dce91aa96a6333727aa9fe9aa03f99a297 +oid sha256:ebebd70a2a276fc582922feaa778b48454c647d6b03d216528fa9a6f2e7ddbc6 size 886 diff --git a/data/minecraft/structure/village/common/animals/cows_1.nbt b/data/minecraft/structure/village/common/animals/cows_1.nbt index 487a87c2..4b1b1b8e 100644 --- a/data/minecraft/structure/village/common/animals/cows_1.nbt +++ b/data/minecraft/structure/village/common/animals/cows_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1f53b6229c40bbc5a9b49f7cdda92138c9423701962fcffa7ca3727c360d35b8 +oid sha256:7d16faac5bf29ff55c316c669e53becda4752c0a90eb1c36741c8ce3486e0761 size 929 diff --git a/data/minecraft/structure/village/common/animals/horses_1.nbt b/data/minecraft/structure/village/common/animals/horses_1.nbt index d7deded3..ad7ef025 100644 --- a/data/minecraft/structure/village/common/animals/horses_1.nbt +++ b/data/minecraft/structure/village/common/animals/horses_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ed996b882cb06407dc3fc1f2e1c6148665ce9e04e0586c32d0e14082b769a68a -size 894 +oid sha256:185bf3ca62e61a5c0b7989a727f9ebf6922fe1862659720c45c8aefc963d09cb +size 891 diff --git a/data/minecraft/structure/village/common/animals/horses_2.nbt b/data/minecraft/structure/village/common/animals/horses_2.nbt index cab8814e..dfd0927b 100644 --- a/data/minecraft/structure/village/common/animals/horses_2.nbt +++ b/data/minecraft/structure/village/common/animals/horses_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0af1507be5f348eb8522ab1ff3d8f0c6746c328de6940268e671d5747cca38c7 -size 1005 +oid sha256:8da67e1880d2831f5fc5a47555b83346cf945dd71fa57cef3df2f68e0868e7ee +size 1004 diff --git a/data/minecraft/structure/village/common/animals/horses_3.nbt b/data/minecraft/structure/village/common/animals/horses_3.nbt index 00d79888..bf574143 100644 --- a/data/minecraft/structure/village/common/animals/horses_3.nbt +++ b/data/minecraft/structure/village/common/animals/horses_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ff324329e24cd9177b66d34c48000bf5a83b43b8598a8c5798ba6bb7f01f6247 -size 1012 +oid sha256:a60310d01e3ffbf6ef5d451253586c03cd24850832d426e511f8b03d38f2eeba +size 1013 diff --git a/data/minecraft/structure/village/common/animals/horses_4.nbt b/data/minecraft/structure/village/common/animals/horses_4.nbt index d6f0f612..8092fa5d 100644 --- a/data/minecraft/structure/village/common/animals/horses_4.nbt +++ b/data/minecraft/structure/village/common/animals/horses_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6ee25a504925b8f912fa21475687667e2379c3474de814d6f746df951253a5fc -size 885 +oid sha256:ef1747bcce2af9d31576d1f3590365b5ced031356e1c548b64f5ef5ab03cd44f +size 886 diff --git a/data/minecraft/structure/village/common/animals/horses_5.nbt b/data/minecraft/structure/village/common/animals/horses_5.nbt index 4f91a20b..630b2573 100644 --- a/data/minecraft/structure/village/common/animals/horses_5.nbt +++ b/data/minecraft/structure/village/common/animals/horses_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b3d7c30eb362e4db1988f5dc9cb86bed0387464aed8ab53b16dc2d785ead23a1 -size 907 +oid sha256:1356639fd934f3fb78abb81fb1d46fc25782c95af39d7b6c1c4e36e21903aa49 +size 906 diff --git a/data/minecraft/structure/village/common/animals/pigs_1.nbt b/data/minecraft/structure/village/common/animals/pigs_1.nbt index 80f5010b..bfd1a526 100644 --- a/data/minecraft/structure/village/common/animals/pigs_1.nbt +++ b/data/minecraft/structure/village/common/animals/pigs_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a55b812db2d97744394bb3a5b5e6eb14a43e0b12ff61892bc405d5d855ebc8af +oid sha256:29cda90b07d49b3951dd79248ba79d2f82a50ab4ca8601c2c84d5e8938d946fa size 931 diff --git a/data/minecraft/structure/village/common/animals/sheep_1.nbt b/data/minecraft/structure/village/common/animals/sheep_1.nbt index 46fa0efe..45d788d5 100644 --- a/data/minecraft/structure/village/common/animals/sheep_1.nbt +++ b/data/minecraft/structure/village/common/animals/sheep_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1e903df88c3d914734cbc0374d26e1b7d3b549a96d7ea869e74e78586675f71d -size 951 +oid sha256:2bfb758062a5c79d4b6e6c43db41c230c32787653e44d9a578a4a551d8260723 +size 950 diff --git a/data/minecraft/structure/village/common/animals/sheep_2.nbt b/data/minecraft/structure/village/common/animals/sheep_2.nbt index 4a1bf311..42fa42b4 100644 --- a/data/minecraft/structure/village/common/animals/sheep_2.nbt +++ b/data/minecraft/structure/village/common/animals/sheep_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2bf61e84e6439b710db3ac735e800ec5fbe645a2b398f9e8f28695cd8a40f105 -size 952 +oid sha256:baa4803dc2a480b6c30cc7c713342d3e6ba5a8272fc799791ba8602a52c24cb5 +size 951 diff --git a/data/minecraft/structure/village/common/iron_golem.nbt b/data/minecraft/structure/village/common/iron_golem.nbt index e0e6505a..e5bca55d 100644 --- a/data/minecraft/structure/village/common/iron_golem.nbt +++ b/data/minecraft/structure/village/common/iron_golem.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f3a4e26ee7fd588b926ea1b1214aa6088ef9f2623e8ab9924168835d4a0a3e6f +oid sha256:10d68d5ab1342a05237c976666a4c0c41ca893a1dd232f08efd04678a894af4b size 822 diff --git a/data/minecraft/structure/village/common/well_bottom.nbt b/data/minecraft/structure/village/common/well_bottom.nbt index 2ffe0097..5916fbb8 100644 --- a/data/minecraft/structure/village/common/well_bottom.nbt +++ b/data/minecraft/structure/village/common/well_bottom.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:748c89da1774c17967367e2c6d9c5fd4cb38f20b7519f5a54031ef286ec84f6f -size 427 +oid sha256:26408d1c60952f37ae4bfcf50521b3e828af8d31f539509e5e5534321187d17b +size 426 diff --git a/data/minecraft/structure/village/decays/grass_11x13.nbt b/data/minecraft/structure/village/decays/grass_11x13.nbt index a4618eb8..1908813c 100644 --- a/data/minecraft/structure/village/decays/grass_11x13.nbt +++ b/data/minecraft/structure/village/decays/grass_11x13.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5e0be2933e7125ce9bf51b3f4267fb0a8408a72278f70aa1948036bb5c5ca05b +oid sha256:099a817994b81fcd0016b637aedaebe401d528502099a1f097af474b34a54279 size 557 diff --git a/data/minecraft/structure/village/decays/grass_16x16.nbt b/data/minecraft/structure/village/decays/grass_16x16.nbt index d8390510..46ec2669 100644 --- a/data/minecraft/structure/village/decays/grass_16x16.nbt +++ b/data/minecraft/structure/village/decays/grass_16x16.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4a316ca7af316f94a6cd34f08eb921625f66352eefb352d7950d036477e4a439 -size 874 +oid sha256:5e3648f73fdab0ac19236d8e5c5b104b14c66e6d672e05b6648936da955f9bf6 +size 873 diff --git a/data/minecraft/structure/village/decays/grass_9x9.nbt b/data/minecraft/structure/village/decays/grass_9x9.nbt index 6cfb3827..923ae52c 100644 --- a/data/minecraft/structure/village/decays/grass_9x9.nbt +++ b/data/minecraft/structure/village/decays/grass_9x9.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:910fef3c42351041ad7eb338b86b61ffcae7dca526f2a39d3cc83fb2dd62b6d0 -size 393 +oid sha256:9b2457e76c653cb6622590ae1cdcb4605331a39de740eb4ea5bda6c5cbb8a9f2 +size 392 diff --git a/data/minecraft/structure/village/desert/camel_spawn.nbt b/data/minecraft/structure/village/desert/camel_spawn.nbt index b34e3bf3..4760ae16 100644 --- a/data/minecraft/structure/village/desert/camel_spawn.nbt +++ b/data/minecraft/structure/village/desert/camel_spawn.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5b65f8944c6af18772af148d1cfac02725af964793a93aacb445124bd800140f -size 283 +oid sha256:60507849c9614a21b515b1769058c7bf76fcc69de7b955dc14019c67a3840ea7 +size 282 diff --git a/data/minecraft/structure/village/desert/desert_lamp_1.nbt b/data/minecraft/structure/village/desert/desert_lamp_1.nbt index af4b2db8..f10c914b 100644 --- a/data/minecraft/structure/village/desert/desert_lamp_1.nbt +++ b/data/minecraft/structure/village/desert/desert_lamp_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9af47253a996e6f1af1eb65eff63f69ad01f4344a42807a44373f8b90ab6cba9 -size 278 +oid sha256:6d8c648910b0f8e1e78dec2fceb8ffe72b3ad2ecd6e46e2ace294c4d15baea91 +size 277 diff --git a/data/minecraft/structure/village/desert/houses/desert_animal_pen_1.nbt b/data/minecraft/structure/village/desert/houses/desert_animal_pen_1.nbt index 7b8f24c6..fd84ff45 100644 --- a/data/minecraft/structure/village/desert/houses/desert_animal_pen_1.nbt +++ b/data/minecraft/structure/village/desert/houses/desert_animal_pen_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:46e3e21e960aa02e3b60fe611329340fb2d95ee4fc882906ff8238b525fbcc05 -size 1687 +oid sha256:07d50bd5075b8f7efbe773cdb57469a4cfb5e20a3ad2343c876e18f4fa9eb293 +size 1686 diff --git a/data/minecraft/structure/village/desert/houses/desert_animal_pen_2.nbt b/data/minecraft/structure/village/desert/houses/desert_animal_pen_2.nbt index 511ce480..2565c0d8 100644 --- a/data/minecraft/structure/village/desert/houses/desert_animal_pen_2.nbt +++ b/data/minecraft/structure/village/desert/houses/desert_animal_pen_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c5f070b21f015190b9354bfcba873f2dd4498adfe9c870dd2d1c1228b44397b1 -size 1863 +oid sha256:adfeae211c5ee4ff1a62f300aa4564e02d8490f859c7e740a7aab76b828457cf +size 1862 diff --git a/data/minecraft/structure/village/desert/houses/desert_armorer_1.nbt b/data/minecraft/structure/village/desert/houses/desert_armorer_1.nbt index 687a1118..7b022d05 100644 --- a/data/minecraft/structure/village/desert/houses/desert_armorer_1.nbt +++ b/data/minecraft/structure/village/desert/houses/desert_armorer_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:25e1e3cc2c5662aab9f85a18ac30ad58a9e36410da316bcec3be5f769042718b -size 1764 +oid sha256:8d1e0b8abf6bd06f103da0af7ff23c97a807fc2f508216ca8a8712d6771d4591 +size 1762 diff --git a/data/minecraft/structure/village/desert/houses/desert_butcher_shop_1.nbt b/data/minecraft/structure/village/desert/houses/desert_butcher_shop_1.nbt index c2d62cd5..39ba1941 100644 --- a/data/minecraft/structure/village/desert/houses/desert_butcher_shop_1.nbt +++ b/data/minecraft/structure/village/desert/houses/desert_butcher_shop_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3c2fc8bd2b5249bf7262c8d96357e409d4208bb17b576aa5e82c01ab79fd90d3 -size 1795 +oid sha256:016148471f667af7f2cf2bf85768405f337c3811edc46bcc97ea5f8132af3726 +size 1794 diff --git a/data/minecraft/structure/village/desert/houses/desert_cartographer_house_1.nbt b/data/minecraft/structure/village/desert/houses/desert_cartographer_house_1.nbt index 3eb1fade..a586764d 100644 --- a/data/minecraft/structure/village/desert/houses/desert_cartographer_house_1.nbt +++ b/data/minecraft/structure/village/desert/houses/desert_cartographer_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:02b547d41a5a03b0e1b916e000a6f5642d270665112d252c9e1faadbce0830c2 -size 1676 +oid sha256:803231041b63887835c9cb13c158b5a8934597896a38065e46f43f9c28ed8c55 +size 1675 diff --git a/data/minecraft/structure/village/desert/houses/desert_farm_1.nbt b/data/minecraft/structure/village/desert/houses/desert_farm_1.nbt index 05094866..c1b3d411 100644 --- a/data/minecraft/structure/village/desert/houses/desert_farm_1.nbt +++ b/data/minecraft/structure/village/desert/houses/desert_farm_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e231fd39fda43915972f58d3322a7cc1112f7c2e0bca1fa0daca23d001ff3778 -size 713 +oid sha256:acc3cc0044264c88b612dddca34ef3ed21fe1d25079b3204c0d33f0fccb2d046 +size 712 diff --git a/data/minecraft/structure/village/desert/houses/desert_farm_2.nbt b/data/minecraft/structure/village/desert/houses/desert_farm_2.nbt index 97f0f6d9..37980390 100644 --- a/data/minecraft/structure/village/desert/houses/desert_farm_2.nbt +++ b/data/minecraft/structure/village/desert/houses/desert_farm_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2d302f694dcc117d1fa5700e4cc40acc9edfd6058605b800c8f22534d616582b +oid sha256:2c2e2478e63f4f77b32006145bb909f3824194ecfd64e0bc907c59c17bb11e9c size 885 diff --git a/data/minecraft/structure/village/desert/houses/desert_fisher_1.nbt b/data/minecraft/structure/village/desert/houses/desert_fisher_1.nbt index d0a3d089..26d72c70 100644 --- a/data/minecraft/structure/village/desert/houses/desert_fisher_1.nbt +++ b/data/minecraft/structure/village/desert/houses/desert_fisher_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ed6496683f51c1e2eab77d8e6cb286d6371e3779e0e62293aba3ac2e41e37fdd -size 2284 +oid sha256:fd6ad9f2d4dbb14c2779ce80bc57143fba29018f802e7b17879c9f961d0e66ab +size 2283 diff --git a/data/minecraft/structure/village/desert/houses/desert_fletcher_house_1.nbt b/data/minecraft/structure/village/desert/houses/desert_fletcher_house_1.nbt index f75e245c..2d380c8d 100644 --- a/data/minecraft/structure/village/desert/houses/desert_fletcher_house_1.nbt +++ b/data/minecraft/structure/village/desert/houses/desert_fletcher_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ba11ddf59a3093cb008c8e20bf537d53ae66779d743a5ffe3684fb810707e27a -size 3094 +oid sha256:b09f922144afc73975f883c4aa21c6e3ffb9c10701808808a6b604d55c424a3d +size 3093 diff --git a/data/minecraft/structure/village/desert/houses/desert_large_farm_1.nbt b/data/minecraft/structure/village/desert/houses/desert_large_farm_1.nbt index 5c777e1a..694b9b3b 100644 --- a/data/minecraft/structure/village/desert/houses/desert_large_farm_1.nbt +++ b/data/minecraft/structure/village/desert/houses/desert_large_farm_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:92ab8d88d46a556db412214ae46bc3d8c6493d7d0541bdf3aa4efa133a64d538 -size 1620 +oid sha256:70f9d543438bc24b3d1d1672e00bd42b28ca2a9f0f73fdd35ba7e53c1e3ee721 +size 1619 diff --git a/data/minecraft/structure/village/desert/houses/desert_library_1.nbt b/data/minecraft/structure/village/desert/houses/desert_library_1.nbt index 2612e705..5a5ff202 100644 --- a/data/minecraft/structure/village/desert/houses/desert_library_1.nbt +++ b/data/minecraft/structure/village/desert/houses/desert_library_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dfd2315cef9651cb7efb89d49868525dab7030b4fe9f4c454c6bd5448e2a59d5 -size 1538 +oid sha256:8fcb4abd05cb9a51a628c23433f788542fa36fe4707dd67e1b0287e2ad12592c +size 1537 diff --git a/data/minecraft/structure/village/desert/houses/desert_mason_1.nbt b/data/minecraft/structure/village/desert/houses/desert_mason_1.nbt index bb363681..b53609ca 100644 --- a/data/minecraft/structure/village/desert/houses/desert_mason_1.nbt +++ b/data/minecraft/structure/village/desert/houses/desert_mason_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:544fa324ba8a6e4a884d4d1d3fa4cd9f6cfeedd25c2797b0579f39d27ca271c1 -size 1441 +oid sha256:0767de9122cb74f6fb1161dde6c08d72a72e657e098e83318aa4bd83b4840fad +size 1440 diff --git a/data/minecraft/structure/village/desert/houses/desert_medium_house_1.nbt b/data/minecraft/structure/village/desert/houses/desert_medium_house_1.nbt index aba685a5..ac98544b 100644 --- a/data/minecraft/structure/village/desert/houses/desert_medium_house_1.nbt +++ b/data/minecraft/structure/village/desert/houses/desert_medium_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:525239218172e1f3f5bf564985fa0f0200291105dbb8d4677a9df4a64e106b27 -size 1440 +oid sha256:3a19bf95830999b932118faf911df33233dcb875da4b648c1a1e57d939081dc5 +size 1439 diff --git a/data/minecraft/structure/village/desert/houses/desert_medium_house_2.nbt b/data/minecraft/structure/village/desert/houses/desert_medium_house_2.nbt index 780b2d52..342bd23c 100644 --- a/data/minecraft/structure/village/desert/houses/desert_medium_house_2.nbt +++ b/data/minecraft/structure/village/desert/houses/desert_medium_house_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c5ec3f9d167127482b15236d0349a35e65d2bc378fb161be8d550a78155bdf02 -size 2837 +oid sha256:7b5a4749df4a36be775bae8826007a1275a5ad753336b0ac6b7d87dbb9b73128 +size 2836 diff --git a/data/minecraft/structure/village/desert/houses/desert_shepherd_house_1.nbt b/data/minecraft/structure/village/desert/houses/desert_shepherd_house_1.nbt index 039c3620..fb8aa645 100644 --- a/data/minecraft/structure/village/desert/houses/desert_shepherd_house_1.nbt +++ b/data/minecraft/structure/village/desert/houses/desert_shepherd_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4228d6d6ca8ac6dd67d409ddb4a6ba6fb948dda82293ed3fe241f51fa40a8cf1 -size 1565 +oid sha256:7f3f57b61c341150e2d87496ae6d1f6af95429e5af27fed69c13578127d6c3b5 +size 1564 diff --git a/data/minecraft/structure/village/desert/houses/desert_small_house_1.nbt b/data/minecraft/structure/village/desert/houses/desert_small_house_1.nbt index 1ae2d0c9..7fb18eea 100644 --- a/data/minecraft/structure/village/desert/houses/desert_small_house_1.nbt +++ b/data/minecraft/structure/village/desert/houses/desert_small_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b306694b3cb824f07fc5a63dd69807ae743448008b56af95f52906f01a90b182 -size 1178 +oid sha256:47b4dc995052400c2b6e8e439de2ba542f98df774d0f4f969c51eeb911d8c6ca +size 1177 diff --git a/data/minecraft/structure/village/desert/houses/desert_small_house_2.nbt b/data/minecraft/structure/village/desert/houses/desert_small_house_2.nbt index aa7a40d9..db4fbe35 100644 --- a/data/minecraft/structure/village/desert/houses/desert_small_house_2.nbt +++ b/data/minecraft/structure/village/desert/houses/desert_small_house_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7c139d74cdca18895a231768eda028768c06780b2ec5b6ab7934d623e72873de -size 1312 +oid sha256:529e4c89028bfb2a418796c45b862974cb669e8fa0345e09ed16d35fbbcbae5e +size 1311 diff --git a/data/minecraft/structure/village/desert/houses/desert_small_house_3.nbt b/data/minecraft/structure/village/desert/houses/desert_small_house_3.nbt index 6edffbdd..76692c8d 100644 --- a/data/minecraft/structure/village/desert/houses/desert_small_house_3.nbt +++ b/data/minecraft/structure/village/desert/houses/desert_small_house_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f7294ad7aed13b44300e852e3561731d9df838e6c33528c34e66fc78516bc822 -size 1130 +oid sha256:7b71d7700b36aed6eede98b9ac188f81ef1d4aaaf818bdb616657f8d15984908 +size 1129 diff --git a/data/minecraft/structure/village/desert/houses/desert_small_house_4.nbt b/data/minecraft/structure/village/desert/houses/desert_small_house_4.nbt index c83a3da4..508ba50a 100644 --- a/data/minecraft/structure/village/desert/houses/desert_small_house_4.nbt +++ b/data/minecraft/structure/village/desert/houses/desert_small_house_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a1d99ad43bd1046226b1ef6ab19ba7d748a0007343b47331178f57e90a192f89 -size 1053 +oid sha256:344c79b37f78efb6313d7ed322fbcb7e0e43f1c0e91b580364caa7c25a3b6d08 +size 1052 diff --git a/data/minecraft/structure/village/desert/houses/desert_small_house_5.nbt b/data/minecraft/structure/village/desert/houses/desert_small_house_5.nbt index e6387d86..ee7e675d 100644 --- a/data/minecraft/structure/village/desert/houses/desert_small_house_5.nbt +++ b/data/minecraft/structure/village/desert/houses/desert_small_house_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5ec6a6c3c60c51f8e3c3c4ed2e39397f71aa17c9994c8e0043918e25a56ed178 -size 1107 +oid sha256:0935471556e6b4dc709ef108299f5d9fdd22ff403b0c3aa53b2201c2c16f0f78 +size 1106 diff --git a/data/minecraft/structure/village/desert/houses/desert_small_house_6.nbt b/data/minecraft/structure/village/desert/houses/desert_small_house_6.nbt index dc77d4e9..c6aa5f7b 100644 --- a/data/minecraft/structure/village/desert/houses/desert_small_house_6.nbt +++ b/data/minecraft/structure/village/desert/houses/desert_small_house_6.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d8e1555028d6ca988ba1dbf08fc17e8434146b66031fbac0ba566ce1e488ce45 -size 2292 +oid sha256:ba204019c801ba610028216b6664dfe6cdf9e44b4e5932facfb1c4297b6b8a08 +size 2291 diff --git a/data/minecraft/structure/village/desert/houses/desert_small_house_7.nbt b/data/minecraft/structure/village/desert/houses/desert_small_house_7.nbt index 8d5f0e49..150ff358 100644 --- a/data/minecraft/structure/village/desert/houses/desert_small_house_7.nbt +++ b/data/minecraft/structure/village/desert/houses/desert_small_house_7.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4f997370a7db008a3477d5dabcb167373e940c7b00a17b2a28c16d33aa473cb0 -size 1598 +oid sha256:b56435769cadbaea651cf42f0c8aed390d90a0336026268249d33d9b437d9596 +size 1597 diff --git a/data/minecraft/structure/village/desert/houses/desert_small_house_8.nbt b/data/minecraft/structure/village/desert/houses/desert_small_house_8.nbt index dea4d4ae..b142ae6d 100644 --- a/data/minecraft/structure/village/desert/houses/desert_small_house_8.nbt +++ b/data/minecraft/structure/village/desert/houses/desert_small_house_8.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b13e4355d6155efa265dbf809531191815e3144a74db77dc110fe149f522a543 +oid sha256:efdc4e5d376c76fbabada3508321055d0f451d33448a5fd997f8959dcc9796f9 size 1024 diff --git a/data/minecraft/structure/village/desert/houses/desert_tannery_1.nbt b/data/minecraft/structure/village/desert/houses/desert_tannery_1.nbt index 3c4ee26a..5c9e9f29 100644 --- a/data/minecraft/structure/village/desert/houses/desert_tannery_1.nbt +++ b/data/minecraft/structure/village/desert/houses/desert_tannery_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ddcfc9a218544792753e478a971c47fa99ae96e9ca91b377851ec1afcdbd324a -size 1835 +oid sha256:c93f98b8d3a9ec15bedde73b310ee7f663ed1f22f08be0f53ea85c36ecca4e6a +size 1834 diff --git a/data/minecraft/structure/village/desert/houses/desert_temple_1.nbt b/data/minecraft/structure/village/desert/houses/desert_temple_1.nbt index 325b53bb..b77197ad 100644 --- a/data/minecraft/structure/village/desert/houses/desert_temple_1.nbt +++ b/data/minecraft/structure/village/desert/houses/desert_temple_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4e4de806bb8c411d32381b1a3c242cfb1cd07d8ea663004206a67848138af61c -size 2998 +oid sha256:d1bcc29c773c9e3c68cb8b9a001648527d1d73a73126a50dc9302a8bbb8cc83b +size 2997 diff --git a/data/minecraft/structure/village/desert/houses/desert_temple_2.nbt b/data/minecraft/structure/village/desert/houses/desert_temple_2.nbt index 4dfbb610..066c3dd7 100644 --- a/data/minecraft/structure/village/desert/houses/desert_temple_2.nbt +++ b/data/minecraft/structure/village/desert/houses/desert_temple_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:452ae7d084b33fcb2a7174c99bc4bea352663bda728e3730b05ffea9613e5fff -size 2879 +oid sha256:c6956a39c3c2fa91895a8f385ad9b72716ed5e163c8a69a17b03a54b2041bb9b +size 2878 diff --git a/data/minecraft/structure/village/desert/houses/desert_tool_smith_1.nbt b/data/minecraft/structure/village/desert/houses/desert_tool_smith_1.nbt index 0859af1a..d59d69fc 100644 --- a/data/minecraft/structure/village/desert/houses/desert_tool_smith_1.nbt +++ b/data/minecraft/structure/village/desert/houses/desert_tool_smith_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bfd70831ca258d2649ca7025f8cfe674ff5bdb6db7f7d8bb04c13ca1245d07b2 -size 2960 +oid sha256:5c08f38bcb14185fcd6c27cf4a5c14cc567ba8df1356041b55a2252fa32de3c7 +size 2959 diff --git a/data/minecraft/structure/village/desert/houses/desert_weaponsmith_1.nbt b/data/minecraft/structure/village/desert/houses/desert_weaponsmith_1.nbt index 389e8b59..2bf3fd0b 100644 --- a/data/minecraft/structure/village/desert/houses/desert_weaponsmith_1.nbt +++ b/data/minecraft/structure/village/desert/houses/desert_weaponsmith_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:262590b687b8be45f0c8297ca3b6de79078510e0a19506ccfb217d04c618ddac -size 2081 +oid sha256:87525a8a2203d7ff98b413e138eca65ad0b4885f77a5e2ee095b8a61cf2aaccf +size 2080 diff --git a/data/minecraft/structure/village/desert/streets/corner_01.nbt b/data/minecraft/structure/village/desert/streets/corner_01.nbt index 3aec4e0e..361ed8d8 100644 --- a/data/minecraft/structure/village/desert/streets/corner_01.nbt +++ b/data/minecraft/structure/village/desert/streets/corner_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6a9cab825cd681cd8203c7591f96f8c2686b6c41711b1e33c66c84443868eee4 -size 748 +oid sha256:1159902a1b717132e46ebde82028321ed74f1fbd116a8846091c15bfa1361c00 +size 747 diff --git a/data/minecraft/structure/village/desert/streets/corner_02.nbt b/data/minecraft/structure/village/desert/streets/corner_02.nbt index 3c9111d9..e75e6a8b 100644 --- a/data/minecraft/structure/village/desert/streets/corner_02.nbt +++ b/data/minecraft/structure/village/desert/streets/corner_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:344ffa68ef149aba787e2aa3acfea55ad52f2d46609056a0c335db0babcf59d6 -size 468 +oid sha256:b59d3f9102beba8dfa1046914bbf7260d2956da3bdd87ba4464f8782adf8baac +size 467 diff --git a/data/minecraft/structure/village/desert/streets/crossroad_01.nbt b/data/minecraft/structure/village/desert/streets/crossroad_01.nbt index f940212e..96b29823 100644 --- a/data/minecraft/structure/village/desert/streets/crossroad_01.nbt +++ b/data/minecraft/structure/village/desert/streets/crossroad_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1a8898777f58c0146cd4df538c8e17c88d5db47e739141c2987b08b5a590d790 -size 1272 +oid sha256:4041bc816bd1d57f97b90c753f8d6c239b4ab8a29d09f8f93cf2a6087073b686 +size 1271 diff --git a/data/minecraft/structure/village/desert/streets/crossroad_02.nbt b/data/minecraft/structure/village/desert/streets/crossroad_02.nbt index 3a44a4ed..883a371d 100644 --- a/data/minecraft/structure/village/desert/streets/crossroad_02.nbt +++ b/data/minecraft/structure/village/desert/streets/crossroad_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ebfe28e74a4e5394136d409f5d309cd5cdd59b1d8e3ae1d9fb7dc0ac20645458 -size 782 +oid sha256:b951428843e7003c469f52121cacaa4f610e691bf341bf31541a75c0e6e3043c +size 781 diff --git a/data/minecraft/structure/village/desert/streets/crossroad_03.nbt b/data/minecraft/structure/village/desert/streets/crossroad_03.nbt index 13c81bf5..49170402 100644 --- a/data/minecraft/structure/village/desert/streets/crossroad_03.nbt +++ b/data/minecraft/structure/village/desert/streets/crossroad_03.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bf8b025452be597191b55e71ff98dda22cb96dde3fce9c363c1860f7ab35a1dd -size 443 +oid sha256:f26f9354b3d713f875f8332f07b2df5b092af0e914ec7dfd277a099974177403 +size 442 diff --git a/data/minecraft/structure/village/desert/streets/square_01.nbt b/data/minecraft/structure/village/desert/streets/square_01.nbt index e41cd7c8..a48b47f4 100644 --- a/data/minecraft/structure/village/desert/streets/square_01.nbt +++ b/data/minecraft/structure/village/desert/streets/square_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1b5859c8b4b3e50d7b05e15d4d002a751416ec2e9da6b705da23ede7d1e4d75d -size 1581 +oid sha256:919b86a4a915a9f998e7b2a27d9b3bb4ff63b4bfeeed271c47010796cf6960a0 +size 1580 diff --git a/data/minecraft/structure/village/desert/streets/square_02.nbt b/data/minecraft/structure/village/desert/streets/square_02.nbt index f2a0934b..64609194 100644 --- a/data/minecraft/structure/village/desert/streets/square_02.nbt +++ b/data/minecraft/structure/village/desert/streets/square_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b0cf354073d582b5ee65ae66122c299d6f1105454e9753ce52aeab46766ee07a -size 1310 +oid sha256:19c900f2198ad9318aa8ef84287cb5511bb01fd5ff246179e0cc03c1c32be4b7 +size 1309 diff --git a/data/minecraft/structure/village/desert/streets/straight_01.nbt b/data/minecraft/structure/village/desert/streets/straight_01.nbt index 37696432..3cea62cd 100644 --- a/data/minecraft/structure/village/desert/streets/straight_01.nbt +++ b/data/minecraft/structure/village/desert/streets/straight_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5c2f18f88ffc03b2a6764626a60b0a70eb8ef980aa2d239d7858b444c0bca22e -size 984 +oid sha256:9c859f44c094d4c8c10cf822b5f9966b5ba419baa4d040fe1fb4030275503839 +size 983 diff --git a/data/minecraft/structure/village/desert/streets/straight_02.nbt b/data/minecraft/structure/village/desert/streets/straight_02.nbt index 0a2cf92e..91a5bc64 100644 --- a/data/minecraft/structure/village/desert/streets/straight_02.nbt +++ b/data/minecraft/structure/village/desert/streets/straight_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a3b79945ea352005fb227fea555aee48a0a50c8e6818c232ed3b5b616090c6c9 -size 1229 +oid sha256:e0cb435ae3693b451c3ccc53c36f045c39519cb6596cdf2d80f3b3b846bdbb53 +size 1228 diff --git a/data/minecraft/structure/village/desert/streets/straight_03.nbt b/data/minecraft/structure/village/desert/streets/straight_03.nbt index c8869b38..4e59e7f8 100644 --- a/data/minecraft/structure/village/desert/streets/straight_03.nbt +++ b/data/minecraft/structure/village/desert/streets/straight_03.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:41e94b6f464cc7d1a47c4f68bdd19f6eb9652b49ee97469c8cf3f9ebce7e9114 -size 322 +oid sha256:b9e923e65a75eb71601b65576b266b20ec56732cc0583376ed288053c8100bfa +size 321 diff --git a/data/minecraft/structure/village/desert/streets/turn_01.nbt b/data/minecraft/structure/village/desert/streets/turn_01.nbt index 059d06d3..1a708969 100644 --- a/data/minecraft/structure/village/desert/streets/turn_01.nbt +++ b/data/minecraft/structure/village/desert/streets/turn_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bdc46ec3b3baf40fdccf0f71e85ff837a476d6fe3685b8f58df2c4b33656a842 -size 400 +oid sha256:0af7e98c9fd9c85ae764f57fc05a3ac1e143e84f205aa9b6dca74705e0a3c10c +size 399 diff --git a/data/minecraft/structure/village/desert/terminators/terminator_01.nbt b/data/minecraft/structure/village/desert/terminators/terminator_01.nbt index 8a942086..ae1f0ffc 100644 --- a/data/minecraft/structure/village/desert/terminators/terminator_01.nbt +++ b/data/minecraft/structure/village/desert/terminators/terminator_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:910f5d969f233e15cfbf0484c298ab9ce9f65e8912fc2b9c186a407d2c06ed45 -size 293 +oid sha256:f105887d7be7c39a772e012c73ea02eeece3251ff6e06a249d81f4f698b7f5b2 +size 292 diff --git a/data/minecraft/structure/village/desert/terminators/terminator_02.nbt b/data/minecraft/structure/village/desert/terminators/terminator_02.nbt index 0b05c9a1..346a952a 100644 --- a/data/minecraft/structure/village/desert/terminators/terminator_02.nbt +++ b/data/minecraft/structure/village/desert/terminators/terminator_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a21536978c7125a150a4c15747aade9382d048106133d2cc9ac3275f9930ca79 -size 372 +oid sha256:1ee44ac697b6b1c477fc7317cfda222d1de77176c9f38651cc00f75381475305 +size 371 diff --git a/data/minecraft/structure/village/desert/town_centers/desert_meeting_point_1.nbt b/data/minecraft/structure/village/desert/town_centers/desert_meeting_point_1.nbt index 96cef0fd..57ce583d 100644 --- a/data/minecraft/structure/village/desert/town_centers/desert_meeting_point_1.nbt +++ b/data/minecraft/structure/village/desert/town_centers/desert_meeting_point_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f9d9335f9a9a41d9cf93c5240cbffc9b7cca4caa505c3101191177796e90cae5 -size 1015 +oid sha256:491977bfcbda258823dd8b8dd362076752196ed1cc58f28e04a2eed38851bcff +size 1014 diff --git a/data/minecraft/structure/village/desert/town_centers/desert_meeting_point_2.nbt b/data/minecraft/structure/village/desert/town_centers/desert_meeting_point_2.nbt index 53279e1b..89ae3437 100644 --- a/data/minecraft/structure/village/desert/town_centers/desert_meeting_point_2.nbt +++ b/data/minecraft/structure/village/desert/town_centers/desert_meeting_point_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ee78393b07ee4cb9e968e930717e765c79f57c5c39c0511c52db484f255ee341 -size 1834 +oid sha256:52078a6401a280404adf4a624dee574ed8fff2d6f4ca9e12853340245adb1ea0 +size 1833 diff --git a/data/minecraft/structure/village/desert/town_centers/desert_meeting_point_3.nbt b/data/minecraft/structure/village/desert/town_centers/desert_meeting_point_3.nbt index 299d96a9..e92d3011 100644 --- a/data/minecraft/structure/village/desert/town_centers/desert_meeting_point_3.nbt +++ b/data/minecraft/structure/village/desert/town_centers/desert_meeting_point_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e6f2c6be039bc031e8ed8314c21dc9e977e8eda7073eaa0fefaf96576cf62b69 -size 1898 +oid sha256:11c9cf397a4e426cfaf9a47b3c0d31f354a57550cbbf989773f8fc69dfe61323 +size 1897 diff --git a/data/minecraft/structure/village/desert/villagers/baby.nbt b/data/minecraft/structure/village/desert/villagers/baby.nbt index aa0e89dc..fe34feed 100644 --- a/data/minecraft/structure/village/desert/villagers/baby.nbt +++ b/data/minecraft/structure/village/desert/villagers/baby.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b1252f2b84e6be1898c8b88359c3e31bdc274f72fcddc4179f931663db1e1473 -size 720 +oid sha256:ee9a0aad4628efc0528a92c06ac5c4bc0ecc6d8206ca32f4068bf0bd6d8b9beb +size 719 diff --git a/data/minecraft/structure/village/desert/villagers/nitwit.nbt b/data/minecraft/structure/village/desert/villagers/nitwit.nbt index 8b1dfca5..4fdc8da6 100644 --- a/data/minecraft/structure/village/desert/villagers/nitwit.nbt +++ b/data/minecraft/structure/village/desert/villagers/nitwit.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6479fa8dc18bcdd053726014d53c1c448ec17bb5fbedb90226a1b8efb4f6d8d6 -size 715 +oid sha256:bc2db7bd74699d5156b7247bf4342af23d42f2087a45b8725591178f486c7c1e +size 716 diff --git a/data/minecraft/structure/village/desert/villagers/unemployed.nbt b/data/minecraft/structure/village/desert/villagers/unemployed.nbt index bb5b90d8..5125bdc4 100644 --- a/data/minecraft/structure/village/desert/villagers/unemployed.nbt +++ b/data/minecraft/structure/village/desert/villagers/unemployed.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fdf766a26b8bd3ed76e9b03653179e9f1ceb4c31f9a226538aa5248f503d90af -size 715 +oid sha256:409f8a0a536d3f47a27d0935bd0ae63c0ba649073adfa280383129d39184a6d7 +size 714 diff --git a/data/minecraft/structure/village/desert/zombie/houses/desert_medium_house_1.nbt b/data/minecraft/structure/village/desert/zombie/houses/desert_medium_house_1.nbt index 6569cce9..0a1ce1a9 100644 --- a/data/minecraft/structure/village/desert/zombie/houses/desert_medium_house_1.nbt +++ b/data/minecraft/structure/village/desert/zombie/houses/desert_medium_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c17d4c748000b557e15e8b55a97cd4f21aa1019de68ea006369d47ca28792f33 -size 1448 +oid sha256:ba325604f75f0ed2d1566683146350fdf91b1e67847f432864faed1f8e38fba0 +size 1447 diff --git a/data/minecraft/structure/village/desert/zombie/houses/desert_medium_house_2.nbt b/data/minecraft/structure/village/desert/zombie/houses/desert_medium_house_2.nbt index 2d717f0d..c25fe82b 100644 --- a/data/minecraft/structure/village/desert/zombie/houses/desert_medium_house_2.nbt +++ b/data/minecraft/structure/village/desert/zombie/houses/desert_medium_house_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2b9db9247b6492e3b884ff61bb68ae125919f1723c79c190a107076568ffb460 -size 2844 +oid sha256:ad0b8af97bf8569a63d5d99b8756fccfe43f605777a7e3f1b05cbdc87085a244 +size 2843 diff --git a/data/minecraft/structure/village/desert/zombie/houses/desert_small_house_1.nbt b/data/minecraft/structure/village/desert/zombie/houses/desert_small_house_1.nbt index 0c880450..441f0f11 100644 --- a/data/minecraft/structure/village/desert/zombie/houses/desert_small_house_1.nbt +++ b/data/minecraft/structure/village/desert/zombie/houses/desert_small_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e1b411aef1c6f1b1636b27c993e5f96224c61f283e5ee953bc2813fe1d350e4e +oid sha256:1774a61c58724f106ee29adddd50227d9a6648f825d757ef76428a35c79f4611 size 1184 diff --git a/data/minecraft/structure/village/desert/zombie/houses/desert_small_house_2.nbt b/data/minecraft/structure/village/desert/zombie/houses/desert_small_house_2.nbt index 5a17eaaa..46da0bfa 100644 --- a/data/minecraft/structure/village/desert/zombie/houses/desert_small_house_2.nbt +++ b/data/minecraft/structure/village/desert/zombie/houses/desert_small_house_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ce0da688e04f3787da69e76b8e1ce5fa773d8dea345699f3191654ca000ec032 -size 1318 +oid sha256:3adfb9d347d348e937b3986bacf1b74b53b8697d7f40a13bba2588f0a0f499c9 +size 1317 diff --git a/data/minecraft/structure/village/desert/zombie/houses/desert_small_house_3.nbt b/data/minecraft/structure/village/desert/zombie/houses/desert_small_house_3.nbt index 6005585d..9bcf5f49 100644 --- a/data/minecraft/structure/village/desert/zombie/houses/desert_small_house_3.nbt +++ b/data/minecraft/structure/village/desert/zombie/houses/desert_small_house_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:934b5fb3680d0e5b41a297919d501f8bb94ee03d489f46fce86bfb5526569c44 -size 1137 +oid sha256:9bf286a8ea67393c1f2e87f1a92a07b137bc08b892d5d30ce442ea7206fe70bb +size 1136 diff --git a/data/minecraft/structure/village/desert/zombie/houses/desert_small_house_4.nbt b/data/minecraft/structure/village/desert/zombie/houses/desert_small_house_4.nbt index 8540172e..deb5125a 100644 --- a/data/minecraft/structure/village/desert/zombie/houses/desert_small_house_4.nbt +++ b/data/minecraft/structure/village/desert/zombie/houses/desert_small_house_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:203944607e0102cd1030eeeaf0c8a6c40a32afcb807564de5c8eb698f09f5bec -size 1060 +oid sha256:d8c60a5bb5aedafa340317eb1330b78a3374905c08e4d569002f810193af3d60 +size 1059 diff --git a/data/minecraft/structure/village/desert/zombie/houses/desert_small_house_5.nbt b/data/minecraft/structure/village/desert/zombie/houses/desert_small_house_5.nbt index c6ba3bbf..47445a63 100644 --- a/data/minecraft/structure/village/desert/zombie/houses/desert_small_house_5.nbt +++ b/data/minecraft/structure/village/desert/zombie/houses/desert_small_house_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1e5bcc8957660a8384241edb61a2ea82dc6d9a9458248684b452c32cb0fb5c14 -size 1113 +oid sha256:dc6d3d5f709a3bbdcc5cd15264a80ab996af1b1831ec9b51ba5dfbe436ca7398 +size 1112 diff --git a/data/minecraft/structure/village/desert/zombie/houses/desert_small_house_6.nbt b/data/minecraft/structure/village/desert/zombie/houses/desert_small_house_6.nbt index 48369838..8c210277 100644 --- a/data/minecraft/structure/village/desert/zombie/houses/desert_small_house_6.nbt +++ b/data/minecraft/structure/village/desert/zombie/houses/desert_small_house_6.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ef6d2038c54923e63320a457c7a068f99fbc8d07d0e0d9a47032379911b616cc -size 1963 +oid sha256:12debee51d69a5da5e5ffbbff828bc748dd1c93a3034457534dcd055427c4a57 +size 1962 diff --git a/data/minecraft/structure/village/desert/zombie/houses/desert_small_house_7.nbt b/data/minecraft/structure/village/desert/zombie/houses/desert_small_house_7.nbt index 414061fb..9efb498f 100644 --- a/data/minecraft/structure/village/desert/zombie/houses/desert_small_house_7.nbt +++ b/data/minecraft/structure/village/desert/zombie/houses/desert_small_house_7.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6364abed6d65af20a3a0f721ec7d51b18a6e888a63f63278b7bb5e64cb49789c -size 1604 +oid sha256:8d996b7d3c0c6c2b88160064a04c6f69cfa15a691fdc528257901a2dc43f2f3f +size 1603 diff --git a/data/minecraft/structure/village/desert/zombie/houses/desert_small_house_8.nbt b/data/minecraft/structure/village/desert/zombie/houses/desert_small_house_8.nbt index 47ff08bb..a20ee1c1 100644 --- a/data/minecraft/structure/village/desert/zombie/houses/desert_small_house_8.nbt +++ b/data/minecraft/structure/village/desert/zombie/houses/desert_small_house_8.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:097e89fd0b8b506f4b8cd924ebc9222f4dd12f93567643a4cb39f1d9089306d1 -size 1029 +oid sha256:bbc6cda7e3357a5e5e485105d7b84205e3cba33b340c8352dfb74d0ee3ed1cbd +size 1028 diff --git a/data/minecraft/structure/village/desert/zombie/streets/corner_01.nbt b/data/minecraft/structure/village/desert/zombie/streets/corner_01.nbt index 539ab682..418180ec 100644 --- a/data/minecraft/structure/village/desert/zombie/streets/corner_01.nbt +++ b/data/minecraft/structure/village/desert/zombie/streets/corner_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7af31c6b9a9bd2596dc878e15e0d967724a048e06ca8379148e9ab484b0a01a6 +oid sha256:08bccb7aa26ac1a6c1197896570c91da4ba1d1d13b6cfadaa770660228732971 size 753 diff --git a/data/minecraft/structure/village/desert/zombie/streets/corner_02.nbt b/data/minecraft/structure/village/desert/zombie/streets/corner_02.nbt index 8f5a21b7..1fd2c12d 100644 --- a/data/minecraft/structure/village/desert/zombie/streets/corner_02.nbt +++ b/data/minecraft/structure/village/desert/zombie/streets/corner_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e62099c8c782f924b5eb69ea0696fb41e0db1f4ad19936b042d00726bf3c3d3c -size 472 +oid sha256:b2228828e2d79f9c7b436370043cbb724e37fc8f257a05d0f008a40404a881f3 +size 471 diff --git a/data/minecraft/structure/village/desert/zombie/streets/crossroad_01.nbt b/data/minecraft/structure/village/desert/zombie/streets/crossroad_01.nbt index 3fd18c1d..dbbf9a38 100644 --- a/data/minecraft/structure/village/desert/zombie/streets/crossroad_01.nbt +++ b/data/minecraft/structure/village/desert/zombie/streets/crossroad_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5da13b9ebc2fad1d354e8ef029c31709ae8f532f1993905d031f76a0e6b77bf6 -size 1278 +oid sha256:b54a68b76ac8ca92bd56525b1fda623057fe5e30e302d75d9ce5ec6033aeb9aa +size 1277 diff --git a/data/minecraft/structure/village/desert/zombie/streets/crossroad_02.nbt b/data/minecraft/structure/village/desert/zombie/streets/crossroad_02.nbt index ae8cfbd3..1e77d92d 100644 --- a/data/minecraft/structure/village/desert/zombie/streets/crossroad_02.nbt +++ b/data/minecraft/structure/village/desert/zombie/streets/crossroad_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bbcad8f24aaaca891f572cf794a5d46fe45da6410cdbe4c323594dd174eda1b6 -size 786 +oid sha256:63fce3281de195c4dc46f5131e95449b7bc7218d0173a0a6770e9f3c5b4b6272 +size 785 diff --git a/data/minecraft/structure/village/desert/zombie/streets/crossroad_03.nbt b/data/minecraft/structure/village/desert/zombie/streets/crossroad_03.nbt index 2549a5ee..7c1a2ebf 100644 --- a/data/minecraft/structure/village/desert/zombie/streets/crossroad_03.nbt +++ b/data/minecraft/structure/village/desert/zombie/streets/crossroad_03.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d7d2faea231da3380daa8465eb396b05637edde27426def00042ae7b2291c0bc -size 449 +oid sha256:63000cf8ddb93686f58271ca05693ff64c92b9b97627a3fe86de54332cc063bf +size 448 diff --git a/data/minecraft/structure/village/desert/zombie/streets/square_01.nbt b/data/minecraft/structure/village/desert/zombie/streets/square_01.nbt index 48c90893..6ba5fa7e 100644 --- a/data/minecraft/structure/village/desert/zombie/streets/square_01.nbt +++ b/data/minecraft/structure/village/desert/zombie/streets/square_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:675a2084e68c9ab3f41fbfcf11f57bab99704b47701f971edc0361ba598be3e5 -size 1586 +oid sha256:259768a05f62949cc0b8e9b19d8d1d08647f15f59c52b720f8d950f04c81528c +size 1585 diff --git a/data/minecraft/structure/village/desert/zombie/streets/square_02.nbt b/data/minecraft/structure/village/desert/zombie/streets/square_02.nbt index 9175cbda..0fe18547 100644 --- a/data/minecraft/structure/village/desert/zombie/streets/square_02.nbt +++ b/data/minecraft/structure/village/desert/zombie/streets/square_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3fb15d8fa9d739a700174ad08528cb4f7550dc4f6d1ac681232603e366a194cd -size 1314 +oid sha256:645e126516a29539ba009fb092d72edc53c3fe1416e46b7cc56097e829dd7a76 +size 1313 diff --git a/data/minecraft/structure/village/desert/zombie/streets/straight_01.nbt b/data/minecraft/structure/village/desert/zombie/streets/straight_01.nbt index 340a1892..f2ae674a 100644 --- a/data/minecraft/structure/village/desert/zombie/streets/straight_01.nbt +++ b/data/minecraft/structure/village/desert/zombie/streets/straight_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1d45ccafa9f0f442a837a633b9d6c24dda06e1fef779662dc0a1d31dd0f2af46 -size 989 +oid sha256:c1a1805308c4d7c03074827f7fd94a884b7f8915a34c404a96801e174e054fce +size 988 diff --git a/data/minecraft/structure/village/desert/zombie/streets/straight_02.nbt b/data/minecraft/structure/village/desert/zombie/streets/straight_02.nbt index 4872fae5..a5bc36e4 100644 --- a/data/minecraft/structure/village/desert/zombie/streets/straight_02.nbt +++ b/data/minecraft/structure/village/desert/zombie/streets/straight_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:014c56dac61666427959c5c66637ab0319f2292d96a89c500621c289b8d3785f -size 1234 +oid sha256:d9a382a3323ed2027f6696c050e7130ccf10352a95c50fdfee7f3d8155839f4f +size 1232 diff --git a/data/minecraft/structure/village/desert/zombie/streets/straight_03.nbt b/data/minecraft/structure/village/desert/zombie/streets/straight_03.nbt index 9e0b9e33..db448937 100644 --- a/data/minecraft/structure/village/desert/zombie/streets/straight_03.nbt +++ b/data/minecraft/structure/village/desert/zombie/streets/straight_03.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c6d92992ea1e48693016dd25e29710d376785917afc122fe593d2d603af8f531 +oid sha256:23219351432a0eb9e9039482c0f901469e18967e5bfae5a794fad88eddea8bb1 size 327 diff --git a/data/minecraft/structure/village/desert/zombie/streets/turn_01.nbt b/data/minecraft/structure/village/desert/zombie/streets/turn_01.nbt index 8836ee4c..f73a84e0 100644 --- a/data/minecraft/structure/village/desert/zombie/streets/turn_01.nbt +++ b/data/minecraft/structure/village/desert/zombie/streets/turn_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4e76b07967a538fcb9b67543dc0c138ca405c7c6a7a7b60ead1b1c94336f062d +oid sha256:dde5934e778c0e702dbebfa001adae46892cb93a8edd56683410c9f137ea5359 size 404 diff --git a/data/minecraft/structure/village/desert/zombie/terminators/terminator_02.nbt b/data/minecraft/structure/village/desert/zombie/terminators/terminator_02.nbt index f4a5d0cd..e5355bd0 100644 --- a/data/minecraft/structure/village/desert/zombie/terminators/terminator_02.nbt +++ b/data/minecraft/structure/village/desert/zombie/terminators/terminator_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:23bbcfbd8052ed257ecb0e280c74f7279f95bed649a703775bf0f1c086efa4e1 -size 376 +oid sha256:1afc7b85618e70001990cbdc92b2d866f8c1429f89d60063565db36a2e1d94e7 +size 375 diff --git a/data/minecraft/structure/village/desert/zombie/town_centers/desert_meeting_point_1.nbt b/data/minecraft/structure/village/desert/zombie/town_centers/desert_meeting_point_1.nbt index 84aef8ee..3d47bb5d 100644 --- a/data/minecraft/structure/village/desert/zombie/town_centers/desert_meeting_point_1.nbt +++ b/data/minecraft/structure/village/desert/zombie/town_centers/desert_meeting_point_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d37524fefd1f173fe602ff08cdec159154a84a450d8a6323c2d74ec536a88c24 +oid sha256:0605614d5dfc91bd44e8b4914a8391baaac69498fc8104126ae4dd8ac7763321 size 1127 diff --git a/data/minecraft/structure/village/desert/zombie/town_centers/desert_meeting_point_2.nbt b/data/minecraft/structure/village/desert/zombie/town_centers/desert_meeting_point_2.nbt index c74226ee..68761800 100644 --- a/data/minecraft/structure/village/desert/zombie/town_centers/desert_meeting_point_2.nbt +++ b/data/minecraft/structure/village/desert/zombie/town_centers/desert_meeting_point_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ad36e07d4967ed1c9dbbd62aa12d1a79f79608052af746e9687b9742a25858bc -size 2312 +oid sha256:19d0be0b876ad8b98d4452d268462a3cf5431a09bd7e9c33a8c02597d03ca9b0 +size 2310 diff --git a/data/minecraft/structure/village/desert/zombie/town_centers/desert_meeting_point_3.nbt b/data/minecraft/structure/village/desert/zombie/town_centers/desert_meeting_point_3.nbt index ba982682..e41f6bdd 100644 --- a/data/minecraft/structure/village/desert/zombie/town_centers/desert_meeting_point_3.nbt +++ b/data/minecraft/structure/village/desert/zombie/town_centers/desert_meeting_point_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ea59d133541c761fb12c48cdfac410692f1c75369cee26ca33cb1547b1f46ee6 -size 4579 +oid sha256:48854a0182096ba1d0c201f6ee756c0e478be76cf6a3e046f3acb7b2df16d211 +size 4578 diff --git a/data/minecraft/structure/village/desert/zombie/villagers/nitwit.nbt b/data/minecraft/structure/village/desert/zombie/villagers/nitwit.nbt index ccf09cac..94ac8ad3 100644 --- a/data/minecraft/structure/village/desert/zombie/villagers/nitwit.nbt +++ b/data/minecraft/structure/village/desert/zombie/villagers/nitwit.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:df4ef435df6d1c741c26acb813b184f858724f8080813e8b814b97eb36c201d9 -size 722 +oid sha256:69234bd5e244d22afe9f3179b4e70a86ee27d52f0aa64a1b0cba2c870be9a6e2 +size 721 diff --git a/data/minecraft/structure/village/desert/zombie/villagers/unemployed.nbt b/data/minecraft/structure/village/desert/zombie/villagers/unemployed.nbt index e85a4b2b..c3c5e713 100644 --- a/data/minecraft/structure/village/desert/zombie/villagers/unemployed.nbt +++ b/data/minecraft/structure/village/desert/zombie/villagers/unemployed.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7e9865c6d13bbb895e6a18805a4d600c2faae6e2aae78526d478d301543ce4e9 +oid sha256:25922f78fc64c32dbbe79ccdc1d893b3721f7bd4371e3f983a56b5d4b00e3c97 size 721 diff --git a/data/minecraft/structure/village/plains/houses/plains_accessory_1.nbt b/data/minecraft/structure/village/plains/houses/plains_accessory_1.nbt index c72fd9bd..aa9f2992 100644 --- a/data/minecraft/structure/village/plains/houses/plains_accessory_1.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_accessory_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a94192f187127469d2cea87662f504d6062ad28899b19dc84152fa42457c1454 +oid sha256:2ccadbc1271b21023d3250b382f3fded00931b7655fc365b1b5cc1f449714087 size 522 diff --git a/data/minecraft/structure/village/plains/houses/plains_animal_pen_1.nbt b/data/minecraft/structure/village/plains/houses/plains_animal_pen_1.nbt index 13f51d05..bea24b46 100644 --- a/data/minecraft/structure/village/plains/houses/plains_animal_pen_1.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_animal_pen_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b3afe2df51058bf81e0f9580eac10642782a9a99467a3dc5942e383e732f227e +oid sha256:dd759e7833be26427c45fc0423587a05bd2f8d9cf6506185163eef1163bae58d size 724 diff --git a/data/minecraft/structure/village/plains/houses/plains_animal_pen_2.nbt b/data/minecraft/structure/village/plains/houses/plains_animal_pen_2.nbt index 7755122d..41450e87 100644 --- a/data/minecraft/structure/village/plains/houses/plains_animal_pen_2.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_animal_pen_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:14c50bbe0c8be6d8b60c82f0049f10d26e9933e762d10d114359a980dca895f8 -size 1011 +oid sha256:25dce444dd975cfdfdfecac39dcbedce8f770bc453d96480977e25829d7c9b77 +size 1010 diff --git a/data/minecraft/structure/village/plains/houses/plains_animal_pen_3.nbt b/data/minecraft/structure/village/plains/houses/plains_animal_pen_3.nbt index f1e578d0..b819ec01 100644 --- a/data/minecraft/structure/village/plains/houses/plains_animal_pen_3.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_animal_pen_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:137dd9342ecdc064465c9d97709715bb77ca1c1ebd9d37f316fb67e4687b6425 +oid sha256:65f9432a315cd0a521b3af31799b4b0a906143d7029b0b00b20e862d187112df size 1353 diff --git a/data/minecraft/structure/village/plains/houses/plains_armorer_house_1.nbt b/data/minecraft/structure/village/plains/houses/plains_armorer_house_1.nbt index f4c4392d..4f3dfaac 100644 --- a/data/minecraft/structure/village/plains/houses/plains_armorer_house_1.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_armorer_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:960b42fb8b3acccbc69a18fd2a7966a3d135421cd9894b69a282187f9a1e1778 -size 2630 +oid sha256:33794a0d5735fa866100a6aaf8a71e3014839fdebcd91b3c9b7a794cd9bdaf4d +size 2631 diff --git a/data/minecraft/structure/village/plains/houses/plains_big_house_1.nbt b/data/minecraft/structure/village/plains/houses/plains_big_house_1.nbt index 28979aef..5d1a112b 100644 --- a/data/minecraft/structure/village/plains/houses/plains_big_house_1.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_big_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4bbbb34b79c4e14d90bab5f7026620cbf90253b1ebf611fe08d51e6f5c644b4c -size 3263 +oid sha256:d7fb7025d65a18ee50f0d279ccf2f83de16249ff2cb3bbf64d1df815b8c66c61 +size 3262 diff --git a/data/minecraft/structure/village/plains/houses/plains_butcher_shop_1.nbt b/data/minecraft/structure/village/plains/houses/plains_butcher_shop_1.nbt index ece116d6..81826a1e 100644 --- a/data/minecraft/structure/village/plains/houses/plains_butcher_shop_1.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_butcher_shop_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2cea4f0d4dc5bc4fc5578b9fd224765082c3c44a6f3a6ef064915cea73d9637d +oid sha256:09c01f93d72eadd93c434f59eae5e00ee5c34300f9384dfd2f5e3ac05962d039 size 4181 diff --git a/data/minecraft/structure/village/plains/houses/plains_butcher_shop_2.nbt b/data/minecraft/structure/village/plains/houses/plains_butcher_shop_2.nbt index d3961d3e..e7b44dd4 100644 --- a/data/minecraft/structure/village/plains/houses/plains_butcher_shop_2.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_butcher_shop_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b8949b271158031052dce501cdf60a73eb68fadc03075e26349932f060e78bd2 -size 4579 +oid sha256:d2d43be43facbd28313704157cee73fcd400bf4a4adb8513cc0ad3dbcd89f40a +size 4578 diff --git a/data/minecraft/structure/village/plains/houses/plains_cartographer_1.nbt b/data/minecraft/structure/village/plains/houses/plains_cartographer_1.nbt index c347f905..db0863e1 100644 --- a/data/minecraft/structure/village/plains/houses/plains_cartographer_1.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_cartographer_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:efeea33c5ff08b24a28752ff5cc93754f7eadd8cbe8541b65a208a61ab0222a1 -size 2392 +oid sha256:eb3d89643d3b8f642ad37a8f7a9544064b1caa3523f89b7bba794fd4f6378a29 +size 2391 diff --git a/data/minecraft/structure/village/plains/houses/plains_fisher_cottage_1.nbt b/data/minecraft/structure/village/plains/houses/plains_fisher_cottage_1.nbt index 1817c0e4..708a156c 100644 --- a/data/minecraft/structure/village/plains/houses/plains_fisher_cottage_1.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_fisher_cottage_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ad03a8d73e0fc24faf478c784c781889db8e234b1e1fda613b7f99f6b0756657 -size 3526 +oid sha256:dbd03c8252d97fa5695f224e0e9e66f4fe2e2a3c55d0f5ef749eaee53f444fd1 +size 3525 diff --git a/data/minecraft/structure/village/plains/houses/plains_fletcher_house_1.nbt b/data/minecraft/structure/village/plains/houses/plains_fletcher_house_1.nbt index 6fe1ed9a..a47708d7 100644 --- a/data/minecraft/structure/village/plains/houses/plains_fletcher_house_1.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_fletcher_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:233d2160faa2b3d8dcbfec1c1846dffe89bac1c3979861b800d2a6c5c879c6e7 -size 2912 +oid sha256:e4eeaf0f59f8afda94e14ba15727d78f4ef7b9c8ac019e0d80157df296830eec +size 2911 diff --git a/data/minecraft/structure/village/plains/houses/plains_large_farm_1.nbt b/data/minecraft/structure/village/plains/houses/plains_large_farm_1.nbt index c4f87b78..59f25f84 100644 --- a/data/minecraft/structure/village/plains/houses/plains_large_farm_1.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_large_farm_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b8395bc3cdf8c655692daf75bc9d7cb1eaa8f71631a1253359b3c895b74ae8e0 +oid sha256:44579428f359a7b096c178d9b4b13d28bd85a78285b1381e2641b7e1b96611dc size 1156 diff --git a/data/minecraft/structure/village/plains/houses/plains_library_1.nbt b/data/minecraft/structure/village/plains/houses/plains_library_1.nbt index af3fac19..d2d47545 100644 --- a/data/minecraft/structure/village/plains/houses/plains_library_1.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_library_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:61aa78d11a77d811fcaf9351b1916b165f69787ecb105647996997da51c35a5f +oid sha256:75e72213e312e383c0ab1ebe58fe8c63b24f88a59fe3bdfd76d84b74787c8ec9 size 6513 diff --git a/data/minecraft/structure/village/plains/houses/plains_library_2.nbt b/data/minecraft/structure/village/plains/houses/plains_library_2.nbt index e1193dc6..d81c7134 100644 --- a/data/minecraft/structure/village/plains/houses/plains_library_2.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_library_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:394b0ae8171a5cbde5289b891b742747b747f749bfab8d94241acb6defaf166a -size 2916 +oid sha256:e38314d35a6e5471a957ca57815f01e674b513d8eca00fffe094b00c1dbc7573 +size 2915 diff --git a/data/minecraft/structure/village/plains/houses/plains_masons_house_1.nbt b/data/minecraft/structure/village/plains/houses/plains_masons_house_1.nbt index 59ded71a..490bfbd2 100644 --- a/data/minecraft/structure/village/plains/houses/plains_masons_house_1.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_masons_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f98926e17645efc4c60ca330a892bd33d501cc96170dbfba17ab6f0118cb5309 -size 2295 +oid sha256:a66b6030a9cd22213230b44e6e7f6efc53d83803148947bb541eeecfc48a6a1d +size 2294 diff --git a/data/minecraft/structure/village/plains/houses/plains_medium_house_1.nbt b/data/minecraft/structure/village/plains/houses/plains_medium_house_1.nbt index c0294b87..0d89fbb4 100644 --- a/data/minecraft/structure/village/plains/houses/plains_medium_house_1.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_medium_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8a7f37c040aecab5ff9f2d9338fb64be33921e5765ab5dcf09070b8312516eaa -size 4239 +oid sha256:c2b313f5dfd0508b2dbc173281b61ccdae6675c78fbe7327a836fd4635ffacb4 +size 4238 diff --git a/data/minecraft/structure/village/plains/houses/plains_medium_house_2.nbt b/data/minecraft/structure/village/plains/houses/plains_medium_house_2.nbt index 56ee1d21..a2991136 100644 --- a/data/minecraft/structure/village/plains/houses/plains_medium_house_2.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_medium_house_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:709faad4a2d03f9084479bc5a9256bb192052f6cf499f413ebb0b52b59744262 -size 2542 +oid sha256:7f4bc28ea587755b49394079443371f4dd2cad33b459c187b098f464c4a4942c +size 2541 diff --git a/data/minecraft/structure/village/plains/houses/plains_meeting_point_4.nbt b/data/minecraft/structure/village/plains/houses/plains_meeting_point_4.nbt index 88ed090e..2578b5ac 100644 --- a/data/minecraft/structure/village/plains/houses/plains_meeting_point_4.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_meeting_point_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e0c7454f56fcf2ff10f61752c157de2a0fea6241e0e89a6ff71174b0ec1dab4e -size 3905 +oid sha256:3fb20bb410d15012631e6d8c7d34f6d8a92e5f577d6f37c0ac0b809d93376c06 +size 3904 diff --git a/data/minecraft/structure/village/plains/houses/plains_meeting_point_5.nbt b/data/minecraft/structure/village/plains/houses/plains_meeting_point_5.nbt index 3c4476f6..29f59f70 100644 --- a/data/minecraft/structure/village/plains/houses/plains_meeting_point_5.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_meeting_point_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c9daef2b0767c3e337b3f3ef9c5ef9fca2d1d029e464df7b3ec1652e87caa606 -size 2651 +oid sha256:a98f2e49e51f573536b4f7788dec467583a140de7f4b365ceef0af1c7792e9d3 +size 2650 diff --git a/data/minecraft/structure/village/plains/houses/plains_shepherds_house_1.nbt b/data/minecraft/structure/village/plains/houses/plains_shepherds_house_1.nbt index 6c2dec68..6d8e8f49 100644 --- a/data/minecraft/structure/village/plains/houses/plains_shepherds_house_1.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_shepherds_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:64a80c8d5a9314307d1285603415e42591a1801f4e0ce7289158aa1dca69c208 -size 2914 +oid sha256:f0ba17873a2b44e5c0282dbfbed33c24bba35b28f0e62cb663b7bb8162897ce0 +size 2912 diff --git a/data/minecraft/structure/village/plains/houses/plains_small_farm_1.nbt b/data/minecraft/structure/village/plains/houses/plains_small_farm_1.nbt index 368afcb6..8b900af6 100644 --- a/data/minecraft/structure/village/plains/houses/plains_small_farm_1.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_small_farm_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8727a0c7bac890a94316c635a9656a3db1000774fd3727fb55c16459a05bb37d +oid sha256:db765d879bdb3b28c3de2e493f91a5ccff8e7b3dd3d5d2b6799a9fb2e47b0f88 size 772 diff --git a/data/minecraft/structure/village/plains/houses/plains_small_house_1.nbt b/data/minecraft/structure/village/plains/houses/plains_small_house_1.nbt index 64f9ac70..eebf256b 100644 --- a/data/minecraft/structure/village/plains/houses/plains_small_house_1.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_small_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:59191f3e6319933662e438e88696340fd33da8dfa08c786aaa886afb20619ed2 -size 1807 +oid sha256:2a40e7d6172efd715978a90e53be019eb7231889a5ce4af762e3fd07bebfef5c +size 1806 diff --git a/data/minecraft/structure/village/plains/houses/plains_small_house_2.nbt b/data/minecraft/structure/village/plains/houses/plains_small_house_2.nbt index 48335ab2..2aa50225 100644 --- a/data/minecraft/structure/village/plains/houses/plains_small_house_2.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_small_house_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:871c5191c245febe6dd844966ef0ffa087e10937985279f4fda60faae35adf1c -size 1699 +oid sha256:d3a2591cb88f0aad356684070c97aa4a78144633098e45bb8d41c5013521d486 +size 1698 diff --git a/data/minecraft/structure/village/plains/houses/plains_small_house_3.nbt b/data/minecraft/structure/village/plains/houses/plains_small_house_3.nbt index 6b21c423..6e3d56f0 100644 --- a/data/minecraft/structure/village/plains/houses/plains_small_house_3.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_small_house_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7eef5bad3fe7c7bd985ccff2109cc27a00305451a9e40a022549cc8ebe789ca8 -size 1801 +oid sha256:6f5703ddd2ede4642469bd1b0b1925c2610e956045d1c6bfa68c33547a5810e3 +size 1800 diff --git a/data/minecraft/structure/village/plains/houses/plains_small_house_4.nbt b/data/minecraft/structure/village/plains/houses/plains_small_house_4.nbt index 660af0d9..4295e9cd 100644 --- a/data/minecraft/structure/village/plains/houses/plains_small_house_4.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_small_house_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:072147736c8f28a800970dced3d2bd0ab236fe3bc06d35858742c4c753ae771d +oid sha256:51aa7201aeb7d8061cedd871912296dc93a0e6a64f741bb5e3ced1d0186b3b39 size 1724 diff --git a/data/minecraft/structure/village/plains/houses/plains_small_house_5.nbt b/data/minecraft/structure/village/plains/houses/plains_small_house_5.nbt index 8b433bb1..8d1fe817 100644 --- a/data/minecraft/structure/village/plains/houses/plains_small_house_5.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_small_house_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:db3031a130c526fa9c5d0797754ab37141a1ba70e547af13f03027063328789e -size 3490 +oid sha256:8c7bff1db5c28e3bc4ea26d2b1b82892c87d64f9c46e9e1dd5797e242f5f54c2 +size 3489 diff --git a/data/minecraft/structure/village/plains/houses/plains_small_house_6.nbt b/data/minecraft/structure/village/plains/houses/plains_small_house_6.nbt index 37c3ac20..7a09d630 100644 --- a/data/minecraft/structure/village/plains/houses/plains_small_house_6.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_small_house_6.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:10f63f8cec2ce4d4c6f5cca4f362f8b33a79cf527901384177a4fbbdff940a75 +oid sha256:516c803323a8a107ed10abe6b829f5476861453dc3c77a237f49a67b27a0512e size 1773 diff --git a/data/minecraft/structure/village/plains/houses/plains_small_house_7.nbt b/data/minecraft/structure/village/plains/houses/plains_small_house_7.nbt index c1ed1d68..6661e315 100644 --- a/data/minecraft/structure/village/plains/houses/plains_small_house_7.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_small_house_7.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c5b842167c9da23b5215c7fd0ff6b05d05588dd808d55b1961e9da5e08b17161 -size 2035 +oid sha256:67af6a7930afc5c1a45c37b217b31d4ddf188927b223a624c33e83a507386888 +size 2034 diff --git a/data/minecraft/structure/village/plains/houses/plains_small_house_8.nbt b/data/minecraft/structure/village/plains/houses/plains_small_house_8.nbt index 338853f8..89475964 100644 --- a/data/minecraft/structure/village/plains/houses/plains_small_house_8.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_small_house_8.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:02c112b5f35ff1a52b1070e7d574229d61a6936cabde3b0470d86d3e0da5ca11 +oid sha256:5b72fa974d8c9ef144c9be2f31a97dd5180f24192861af34a29655e4d8d310b8 size 2682 diff --git a/data/minecraft/structure/village/plains/houses/plains_stable_1.nbt b/data/minecraft/structure/village/plains/houses/plains_stable_1.nbt index f34400e8..192e97e4 100644 --- a/data/minecraft/structure/village/plains/houses/plains_stable_1.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_stable_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6605b1d1a8801022082d223d9592470cb620428e12d1f57b2c530c9df507df0c -size 3778 +oid sha256:655974a58e6ac4f283fdc03b6bd4c00806641f5922a97f73a5b275a4879fa074 +size 3777 diff --git a/data/minecraft/structure/village/plains/houses/plains_stable_2.nbt b/data/minecraft/structure/village/plains/houses/plains_stable_2.nbt index 5af5b179..f857bd36 100644 --- a/data/minecraft/structure/village/plains/houses/plains_stable_2.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_stable_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:30e8eaeb8ad1b493ce90a1549efd58cdcce6461cc4cc788c0b45264a9d9877e9 -size 3071 +oid sha256:e26674d6d471978253cec1d38d28654ca9215d739849051fc45ad2fd3c006bb7 +size 3070 diff --git a/data/minecraft/structure/village/plains/houses/plains_tannery_1.nbt b/data/minecraft/structure/village/plains/houses/plains_tannery_1.nbt index 10005778..12c56b21 100644 --- a/data/minecraft/structure/village/plains/houses/plains_tannery_1.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_tannery_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a063117eeac136262877910a9f789e35087c7e3c66711cbbd0b883c3908e8be2 -size 2502 +oid sha256:2dd4cea9f35563476bf4304699478ae8759b0fed9a47451930790fe7fb68a866 +size 2501 diff --git a/data/minecraft/structure/village/plains/houses/plains_temple_3.nbt b/data/minecraft/structure/village/plains/houses/plains_temple_3.nbt index 0784a049..c2cc5376 100644 --- a/data/minecraft/structure/village/plains/houses/plains_temple_3.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_temple_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9d331bd24e299e299fa07da75f073964325c8855ca577e3fc1e6f164334a38ab +oid sha256:029e88ca81749a61c1906e82b7507f3629f5e617042d524fabd9cc8087a34bd0 size 2491 diff --git a/data/minecraft/structure/village/plains/houses/plains_temple_4.nbt b/data/minecraft/structure/village/plains/houses/plains_temple_4.nbt index 611a7b46..d8cb4b72 100644 --- a/data/minecraft/structure/village/plains/houses/plains_temple_4.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_temple_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:90e84b25cc5c51d9b772abc6d87fd70a1309eb72f09706f9bf6c45e5cf535a6b +oid sha256:040acc9347dc54b1c83d7b57cb34487d3e9909e2150fb5860d33ec9d73176b18 size 3210 diff --git a/data/minecraft/structure/village/plains/houses/plains_tool_smith_1.nbt b/data/minecraft/structure/village/plains/houses/plains_tool_smith_1.nbt index b3cbe6df..3c958b8b 100644 --- a/data/minecraft/structure/village/plains/houses/plains_tool_smith_1.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_tool_smith_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8f19b7f9c83ecedeb8a1117b0e4993ab7337a03a930554bb2807d676b2b4b2f0 -size 2674 +oid sha256:cfb050c0b3dfcf18af18529bcd583cd65f6334797b81fdfbd169ead8d4b97b98 +size 2673 diff --git a/data/minecraft/structure/village/plains/houses/plains_weaponsmith_1.nbt b/data/minecraft/structure/village/plains/houses/plains_weaponsmith_1.nbt index 77dd52a2..ef5df74d 100644 --- a/data/minecraft/structure/village/plains/houses/plains_weaponsmith_1.nbt +++ b/data/minecraft/structure/village/plains/houses/plains_weaponsmith_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0b10355684eb4972e4f4ee655a60ddb58c3f2a647d638dda01dae1be855e34e4 -size 3363 +oid sha256:c43496fcefd7374f1cc115efe18f8df23ffd9488f9471fcca43034f7a9045264 +size 3362 diff --git a/data/minecraft/structure/village/plains/plains_lamp_1.nbt b/data/minecraft/structure/village/plains/plains_lamp_1.nbt index 2f124414..28c8ba7c 100644 --- a/data/minecraft/structure/village/plains/plains_lamp_1.nbt +++ b/data/minecraft/structure/village/plains/plains_lamp_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4b8eb2e72dce8c03f51f0b67a25468a8ff7e763e20c6dbecdce89f53320ae23f -size 469 +oid sha256:bddf1c5896502a3a3cb3bcf05c530cbd800f9b76cd65e4523c041c529eedaef5 +size 468 diff --git a/data/minecraft/structure/village/plains/streets/corner_01.nbt b/data/minecraft/structure/village/plains/streets/corner_01.nbt index a2ac4e80..caf46d79 100644 --- a/data/minecraft/structure/village/plains/streets/corner_01.nbt +++ b/data/minecraft/structure/village/plains/streets/corner_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a0afe7652e16a8da7285543451ca620d165b9360ac0c7fedee2930cb6e39d289 -size 1182 +oid sha256:7a6ed866fdfae1fc4961943b5507769005b1815e9443926d6b15653d4d73d4c1 +size 1181 diff --git a/data/minecraft/structure/village/plains/streets/corner_02.nbt b/data/minecraft/structure/village/plains/streets/corner_02.nbt index 79cd12a3..f46ec2d1 100644 --- a/data/minecraft/structure/village/plains/streets/corner_02.nbt +++ b/data/minecraft/structure/village/plains/streets/corner_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:263501fe5eda79291063921aad3511c02c83acfc275a6882b904867ec305090f +oid sha256:013cc2e578f566376875ec34ab5371fe1bf3a9d48bedbb6889c47633b89fe0e6 size 1108 diff --git a/data/minecraft/structure/village/plains/streets/corner_03.nbt b/data/minecraft/structure/village/plains/streets/corner_03.nbt index daff6212..585c5944 100644 --- a/data/minecraft/structure/village/plains/streets/corner_03.nbt +++ b/data/minecraft/structure/village/plains/streets/corner_03.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a73c5f8939d3e02e85aab478855981dd6acd3bccc64496eda8d369f66175ada3 -size 350 +oid sha256:d0190544778efcd5ef1d5be0937df089170b983cd4caba036aaa0bd830f42970 +size 349 diff --git a/data/minecraft/structure/village/plains/streets/crossroad_01.nbt b/data/minecraft/structure/village/plains/streets/crossroad_01.nbt index a2ccccec..51513be9 100644 --- a/data/minecraft/structure/village/plains/streets/crossroad_01.nbt +++ b/data/minecraft/structure/village/plains/streets/crossroad_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:826d6eeccc4bd6c4f8bd8213800b67aedec6d612fe9bfcc1e851d6b8cba506e6 -size 1215 +oid sha256:d30fbcef34861ecdb15e667ffad9445f498f5e687981ab39a48635a6a2edabad +size 1214 diff --git a/data/minecraft/structure/village/plains/streets/crossroad_02.nbt b/data/minecraft/structure/village/plains/streets/crossroad_02.nbt index 8d7dec0e..5c214ec6 100644 --- a/data/minecraft/structure/village/plains/streets/crossroad_02.nbt +++ b/data/minecraft/structure/village/plains/streets/crossroad_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1622e4e9eb2bdaedff72f52337abe8b2d15d465e85be3ffbac5986b55e21d874 -size 1160 +oid sha256:0786bf71d427ec0e3d3bd080c48dfed8e797783033bf16d81aad506e04eb59f4 +size 1159 diff --git a/data/minecraft/structure/village/plains/streets/crossroad_03.nbt b/data/minecraft/structure/village/plains/streets/crossroad_03.nbt index 3412b817..5193dfa5 100644 --- a/data/minecraft/structure/village/plains/streets/crossroad_03.nbt +++ b/data/minecraft/structure/village/plains/streets/crossroad_03.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bbe528cccf1f3e4a6da6f07ad77b147d6aa3347d37696d18f8d5347f8c3c1cad -size 1204 +oid sha256:cb20ae1a3c83ca74dec184411ea62b5bf6b6caa11386ac7f6e9ad56ed41e1161 +size 1203 diff --git a/data/minecraft/structure/village/plains/streets/crossroad_04.nbt b/data/minecraft/structure/village/plains/streets/crossroad_04.nbt index f6e1c53b..bbfaad62 100644 --- a/data/minecraft/structure/village/plains/streets/crossroad_04.nbt +++ b/data/minecraft/structure/village/plains/streets/crossroad_04.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e359a44a12b7a7f113c362b04f540e55448c63fc0304bb120482b882770cab51 -size 377 +oid sha256:a185b7990fec29760694e4466604df317513e3b5645a7b498a00463dfe735d45 +size 376 diff --git a/data/minecraft/structure/village/plains/streets/crossroad_05.nbt b/data/minecraft/structure/village/plains/streets/crossroad_05.nbt index 511b5b74..1ded86c5 100644 --- a/data/minecraft/structure/village/plains/streets/crossroad_05.nbt +++ b/data/minecraft/structure/village/plains/streets/crossroad_05.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:beebb81edbe3e87e027a7f5c7a73cb79686398eb839059fb384683b21cb588c6 -size 409 +oid sha256:9f997aea78b10c43197987c0b62cf6329fb5bc81e73c1317f1cd2bc7fc632fce +size 408 diff --git a/data/minecraft/structure/village/plains/streets/crossroad_06.nbt b/data/minecraft/structure/village/plains/streets/crossroad_06.nbt index f72e87a3..e5bc63d4 100644 --- a/data/minecraft/structure/village/plains/streets/crossroad_06.nbt +++ b/data/minecraft/structure/village/plains/streets/crossroad_06.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a94dc103d95e7ee2fe05366c234f751b079d7e1f33275bded19dc508316ea47b -size 470 +oid sha256:1dddc344e913afd9c12abedbbdb88f01fe6a2fecc131dee1cf0b1510ea778ccb +size 469 diff --git a/data/minecraft/structure/village/plains/streets/straight_01.nbt b/data/minecraft/structure/village/plains/streets/straight_01.nbt index 241674a7..dbce6e5d 100644 --- a/data/minecraft/structure/village/plains/streets/straight_01.nbt +++ b/data/minecraft/structure/village/plains/streets/straight_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8d28209be43ab16f972c3702f3b2f70942ce214634c66ba3c00f7319bcfcc648 -size 1131 +oid sha256:bce810547fc20f27de136f4f6efde3b40cdb7c7682a3bde93dd46435781ca570 +size 1130 diff --git a/data/minecraft/structure/village/plains/streets/straight_02.nbt b/data/minecraft/structure/village/plains/streets/straight_02.nbt index 28874336..f4c6fd01 100644 --- a/data/minecraft/structure/village/plains/streets/straight_02.nbt +++ b/data/minecraft/structure/village/plains/streets/straight_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:426d1a107c3fed06630773efbd99942afedad3a14e77e15562f6465dcb4f29a8 -size 1084 +oid sha256:03be15f4feadc1a4fb0851db9c0c7a701511ec6b3fefef71af6e47b4ea1d2f67 +size 1083 diff --git a/data/minecraft/structure/village/plains/streets/straight_03.nbt b/data/minecraft/structure/village/plains/streets/straight_03.nbt index 748bf0f8..b428df7f 100644 --- a/data/minecraft/structure/village/plains/streets/straight_03.nbt +++ b/data/minecraft/structure/village/plains/streets/straight_03.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b6f7de9046c2a56985a56f8657e0bee16d34e536134638e542b36ffcce3105d6 -size 777 +oid sha256:6248faf5b039dbf20e966b499eea1e8eaef8c6cb84e2d567299301a8b5bda510 +size 776 diff --git a/data/minecraft/structure/village/plains/streets/straight_04.nbt b/data/minecraft/structure/village/plains/streets/straight_04.nbt index dc3fa4c4..ee497a7d 100644 --- a/data/minecraft/structure/village/plains/streets/straight_04.nbt +++ b/data/minecraft/structure/village/plains/streets/straight_04.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3099c8206ef45bbe88a13b54b2846526346e550bf7a04071ad3e9559cda0ede9 -size 634 +oid sha256:dc2a6196c305b3c2acbbcb0dcc75e11a94fc990bc47648e49f68df503f208cb2 +size 633 diff --git a/data/minecraft/structure/village/plains/streets/straight_05.nbt b/data/minecraft/structure/village/plains/streets/straight_05.nbt index 4cdd2ad2..19bdfb75 100644 --- a/data/minecraft/structure/village/plains/streets/straight_05.nbt +++ b/data/minecraft/structure/village/plains/streets/straight_05.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:31680fbe2d2eb53b3735df85c0ccfd195057afca02b133391bfe815a70850959 -size 1327 +oid sha256:d50c88af3260a6cd887c7a30172b4b6897bc022ddc6f4813744dd98c84c904a4 +size 1326 diff --git a/data/minecraft/structure/village/plains/streets/straight_06.nbt b/data/minecraft/structure/village/plains/streets/straight_06.nbt index f3f1ee34..f5ee5c0a 100644 --- a/data/minecraft/structure/village/plains/streets/straight_06.nbt +++ b/data/minecraft/structure/village/plains/streets/straight_06.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:344c229315abeeb48c0f9655478369864d47e51c64bfed87a797ccac07631676 -size 1703 +oid sha256:1f771d159a1fda449d6e4e283658c02b242054b35eb9f55d90362a4a215e8dd5 +size 1702 diff --git a/data/minecraft/structure/village/plains/streets/turn_01.nbt b/data/minecraft/structure/village/plains/streets/turn_01.nbt index db91dedc..b5581688 100644 --- a/data/minecraft/structure/village/plains/streets/turn_01.nbt +++ b/data/minecraft/structure/village/plains/streets/turn_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e07c7ae59c6f1679d14de8a35e9f193658dcf5280aa505acf4b88842ac7cc5dc -size 789 +oid sha256:eb3a59d759a4e8641a9ea5613713b41c8e15f3d6cf1935b51e3fea58619bf57b +size 788 diff --git a/data/minecraft/structure/village/plains/terminators/terminator_01.nbt b/data/minecraft/structure/village/plains/terminators/terminator_01.nbt index acf68735..53f4c0f3 100644 --- a/data/minecraft/structure/village/plains/terminators/terminator_01.nbt +++ b/data/minecraft/structure/village/plains/terminators/terminator_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f6b62487da8cdde7750b919e967fbe61bbaf48103ce4209a76c57168a092cff4 +oid sha256:90e648f107a917a932aa0b19b31306c471c8656ff352a99eb1f28ddd3fd3dd29 size 283 diff --git a/data/minecraft/structure/village/plains/terminators/terminator_02.nbt b/data/minecraft/structure/village/plains/terminators/terminator_02.nbt index e86607f5..ce622ea3 100644 --- a/data/minecraft/structure/village/plains/terminators/terminator_02.nbt +++ b/data/minecraft/structure/village/plains/terminators/terminator_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4453651ef113c3e3c81d7db6c0c0e80f9ca4caa9816c08729cccabc2c4ae3d68 -size 250 +oid sha256:d108ae9028683ec972fb80916be69fb3bfd0e3fd1ba0b5330feb255f08f3333e +size 249 diff --git a/data/minecraft/structure/village/plains/terminators/terminator_03.nbt b/data/minecraft/structure/village/plains/terminators/terminator_03.nbt index 3b3ad4c1..2e2e3130 100644 --- a/data/minecraft/structure/village/plains/terminators/terminator_03.nbt +++ b/data/minecraft/structure/village/plains/terminators/terminator_03.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eb2eba8f6393f601048cd13b70e48b36f5b43f05bb96f37368e7715c6a8da40b -size 291 +oid sha256:15852c58aef1e45943cb1bedc785bfc9c888c425db6c6e277835e7173d8b9beb +size 290 diff --git a/data/minecraft/structure/village/plains/terminators/terminator_04.nbt b/data/minecraft/structure/village/plains/terminators/terminator_04.nbt index d42f7f13..51e0c124 100644 --- a/data/minecraft/structure/village/plains/terminators/terminator_04.nbt +++ b/data/minecraft/structure/village/plains/terminators/terminator_04.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:506f4774fc488d8eda3d53cd082cc679ce4d8929206f65754d0c94c6e61d43df +oid sha256:cf02c20c865c43069a00584a004553719595ebc08b34d1024c26728c5cffe286 size 320 diff --git a/data/minecraft/structure/village/plains/town_centers/plains_fountain_01.nbt b/data/minecraft/structure/village/plains/town_centers/plains_fountain_01.nbt index 6c4908f1..d4753338 100644 --- a/data/minecraft/structure/village/plains/town_centers/plains_fountain_01.nbt +++ b/data/minecraft/structure/village/plains/town_centers/plains_fountain_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e9d3e1a41750804fac4dc302ed3de9314e6b65b89e18279b9e529e91262008b5 -size 956 +oid sha256:36b3e671f20ec4ef7633ade776ebf0e8094a35c371ff0096978514d424a959a5 +size 955 diff --git a/data/minecraft/structure/village/plains/town_centers/plains_meeting_point_1.nbt b/data/minecraft/structure/village/plains/town_centers/plains_meeting_point_1.nbt index 148091da..d18e2932 100644 --- a/data/minecraft/structure/village/plains/town_centers/plains_meeting_point_1.nbt +++ b/data/minecraft/structure/village/plains/town_centers/plains_meeting_point_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e517af4c250c29d751de00ba221e2433c96f9defce33fa8952dbe5d6c49c9d33 -size 1051 +oid sha256:1b7e65f72cef931f9b680fd1ab57a6e8c5d59b080da1d74d2ccadd91bfef422f +size 1050 diff --git a/data/minecraft/structure/village/plains/town_centers/plains_meeting_point_2.nbt b/data/minecraft/structure/village/plains/town_centers/plains_meeting_point_2.nbt index 0b9f835b..b9d4d7d8 100644 --- a/data/minecraft/structure/village/plains/town_centers/plains_meeting_point_2.nbt +++ b/data/minecraft/structure/village/plains/town_centers/plains_meeting_point_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:125f7d36f325f9440cc557ac7c63d9b60370d4137e41cc4dbba13b2e165b7a25 +oid sha256:89cd6e279bb20ee65597673c2dc32c672a382d8591517525b53da8e7b50ee2c4 size 2537 diff --git a/data/minecraft/structure/village/plains/town_centers/plains_meeting_point_3.nbt b/data/minecraft/structure/village/plains/town_centers/plains_meeting_point_3.nbt index efc6758c..049e5fc0 100644 --- a/data/minecraft/structure/village/plains/town_centers/plains_meeting_point_3.nbt +++ b/data/minecraft/structure/village/plains/town_centers/plains_meeting_point_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:34a6f6a3faff20c834ef9fd205ffd7d43a970613c80fbfa7aa5bace447110d46 -size 1586 +oid sha256:5f89ca98a60dc88afb293809da35bc0e565b888a9b92b25029e90c35e6a54dd7 +size 1585 diff --git a/data/minecraft/structure/village/plains/villagers/baby.nbt b/data/minecraft/structure/village/plains/villagers/baby.nbt index 376431fe..80322dba 100644 --- a/data/minecraft/structure/village/plains/villagers/baby.nbt +++ b/data/minecraft/structure/village/plains/villagers/baby.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:86317fcc169b01bbde902a4747bb85b28c63bd062203af20972ad6046b8229cc +oid sha256:090388ffe99eb76d19510df401b7195c50cff353b16c7ccb5201ab730e6c2c6f size 718 diff --git a/data/minecraft/structure/village/plains/villagers/nitwit.nbt b/data/minecraft/structure/village/plains/villagers/nitwit.nbt index 52c9e016..ee7e266f 100644 --- a/data/minecraft/structure/village/plains/villagers/nitwit.nbt +++ b/data/minecraft/structure/village/plains/villagers/nitwit.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9d86c2f1810d6e6da82129fff86281eba9df9b35e6679b16d3bbf1ab84c96dc2 +oid sha256:913d7cf3b00130860c0158f687b40350c563805a7b13690be6f68b0352afbdce size 715 diff --git a/data/minecraft/structure/village/plains/villagers/unemployed.nbt b/data/minecraft/structure/village/plains/villagers/unemployed.nbt index 964792f9..7b6c0c1f 100644 --- a/data/minecraft/structure/village/plains/villagers/unemployed.nbt +++ b/data/minecraft/structure/village/plains/villagers/unemployed.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:88ad8328332e61fe10afe24cee919cd31879d755ae7601f986999c3d0485225a +oid sha256:69d84bc64b3e60a368e8a00cd85fdfe68c85d13b7ea0fa6bf65877854ee8aa87 size 714 diff --git a/data/minecraft/structure/village/plains/zombie/houses/plains_animal_pen_3.nbt b/data/minecraft/structure/village/plains/zombie/houses/plains_animal_pen_3.nbt index 28bfd856..f587fcf7 100644 --- a/data/minecraft/structure/village/plains/zombie/houses/plains_animal_pen_3.nbt +++ b/data/minecraft/structure/village/plains/zombie/houses/plains_animal_pen_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4ed36b62e7a39de7bd87ab05a38e1072142fa880b5bbe6b2b45cfcff279029d4 -size 1361 +oid sha256:a990c75d61ea147d1295a6a9de44630dbc3ca1bce72dca64b2913f3124eaf16b +size 1360 diff --git a/data/minecraft/structure/village/plains/zombie/houses/plains_big_house_1.nbt b/data/minecraft/structure/village/plains/zombie/houses/plains_big_house_1.nbt index 16c9f4a2..6a2d9228 100644 --- a/data/minecraft/structure/village/plains/zombie/houses/plains_big_house_1.nbt +++ b/data/minecraft/structure/village/plains/zombie/houses/plains_big_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:66c770c229098f739eef7f78928045c4b5e5e3923dc5d62c96de33ecd2c004f1 -size 3271 +oid sha256:e307a36a1022a50fbcefaaa41c513c018e2532958f98a26274300b2f422d3891 +size 3270 diff --git a/data/minecraft/structure/village/plains/zombie/houses/plains_butcher_shop_2.nbt b/data/minecraft/structure/village/plains/zombie/houses/plains_butcher_shop_2.nbt index 2316427e..9e355b41 100644 --- a/data/minecraft/structure/village/plains/zombie/houses/plains_butcher_shop_2.nbt +++ b/data/minecraft/structure/village/plains/zombie/houses/plains_butcher_shop_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:99adf5d5f5e018e260e32ff29395d8f64425b459fa595b43429efb3c83ef87fa -size 4661 +oid sha256:fcf29bf382b5cacdd8e1b7f3e73c1f6848051518048f265b0373fdf5aecab7dd +size 4658 diff --git a/data/minecraft/structure/village/plains/zombie/houses/plains_fletcher_house_1.nbt b/data/minecraft/structure/village/plains/zombie/houses/plains_fletcher_house_1.nbt index 95eeffc1..42a071b7 100644 --- a/data/minecraft/structure/village/plains/zombie/houses/plains_fletcher_house_1.nbt +++ b/data/minecraft/structure/village/plains/zombie/houses/plains_fletcher_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:41a221440e7a591a5d76a0b3f4f2f36904e91fabe0eaa738866976ef8cc5f43f -size 2905 +oid sha256:09e4f72631c6edc63c604a340ab21827cfd05f437f2004e91d7b6ef8a701a901 +size 2903 diff --git a/data/minecraft/structure/village/plains/zombie/houses/plains_medium_house_1.nbt b/data/minecraft/structure/village/plains/zombie/houses/plains_medium_house_1.nbt index 0b5f53f2..2e37fbfb 100644 --- a/data/minecraft/structure/village/plains/zombie/houses/plains_medium_house_1.nbt +++ b/data/minecraft/structure/village/plains/zombie/houses/plains_medium_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:223ead83b55cab5af7bfb383f57f002949a39f962c7e905a2fd05eb1119ae99c -size 4247 +oid sha256:f185930f10a7df9a210359187f68d3560314238dde723eefb73105f5e7090f5b +size 4246 diff --git a/data/minecraft/structure/village/plains/zombie/houses/plains_medium_house_2.nbt b/data/minecraft/structure/village/plains/zombie/houses/plains_medium_house_2.nbt index e31d4f00..545b9e9b 100644 --- a/data/minecraft/structure/village/plains/zombie/houses/plains_medium_house_2.nbt +++ b/data/minecraft/structure/village/plains/zombie/houses/plains_medium_house_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3b3de620019eaaa5572f51267a74c7e5036b0062488e5919127500d51d072e2e -size 2541 +oid sha256:2544948ab409f8506481d3e86016072b04df85770e2821821191a714e27376fa +size 2539 diff --git a/data/minecraft/structure/village/plains/zombie/houses/plains_meeting_point_4.nbt b/data/minecraft/structure/village/plains/zombie/houses/plains_meeting_point_4.nbt index fd537f9d..6c3acae0 100644 --- a/data/minecraft/structure/village/plains/zombie/houses/plains_meeting_point_4.nbt +++ b/data/minecraft/structure/village/plains/zombie/houses/plains_meeting_point_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7b228bffcc465ec3f4b1c2ade36f08a1edb599812c33c6627815ffd7cd2d6116 -size 3918 +oid sha256:534bf08d574c70317e87f1193c26ca706529740bf7e230199d189a7b30514110 +size 3917 diff --git a/data/minecraft/structure/village/plains/zombie/houses/plains_meeting_point_5.nbt b/data/minecraft/structure/village/plains/zombie/houses/plains_meeting_point_5.nbt index 5f2bd7cf..cd134204 100644 --- a/data/minecraft/structure/village/plains/zombie/houses/plains_meeting_point_5.nbt +++ b/data/minecraft/structure/village/plains/zombie/houses/plains_meeting_point_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3b1e7029cae207f4cfc101faf8523a89cfbfbc49fe3d40ce2368e2dbafb9f6d9 -size 2597 +oid sha256:c8d24a30bcc456006fd0a8020576be6fbdfd700fc14f1076003c30b5a74d2345 +size 2596 diff --git a/data/minecraft/structure/village/plains/zombie/houses/plains_shepherds_house_1.nbt b/data/minecraft/structure/village/plains/zombie/houses/plains_shepherds_house_1.nbt index b221c028..d4afb8a5 100644 --- a/data/minecraft/structure/village/plains/zombie/houses/plains_shepherds_house_1.nbt +++ b/data/minecraft/structure/village/plains/zombie/houses/plains_shepherds_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:13995b34c94e97bfeab6c70930ff3db977061e4e4cd07a0bfbb027588b4290b5 -size 2924 +oid sha256:7df6ed22dbfb82af0c8bf2c9813ec6c06559fd521e3514c744b6ea1fe858ee6e +size 2923 diff --git a/data/minecraft/structure/village/plains/zombie/houses/plains_small_house_1.nbt b/data/minecraft/structure/village/plains/zombie/houses/plains_small_house_1.nbt index 8945a453..a6b45523 100644 --- a/data/minecraft/structure/village/plains/zombie/houses/plains_small_house_1.nbt +++ b/data/minecraft/structure/village/plains/zombie/houses/plains_small_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c4075fa87cdec0d5990be7fa3ea573f2fac98975d7a9dcf0ff6b209478ffcaa5 +oid sha256:1794156a31f8a708cc1b9eb2387824269807c29e336bf4210d5cf0fbaeffd5c1 size 1807 diff --git a/data/minecraft/structure/village/plains/zombie/houses/plains_small_house_2.nbt b/data/minecraft/structure/village/plains/zombie/houses/plains_small_house_2.nbt index a6a6fc83..50c3e6f7 100644 --- a/data/minecraft/structure/village/plains/zombie/houses/plains_small_house_2.nbt +++ b/data/minecraft/structure/village/plains/zombie/houses/plains_small_house_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0f20e4101b7fc0390f473a67a40c57f708a5e063b9ff57d9230938a9f2d9ab0e -size 1706 +oid sha256:20559b9968b89e44c3647e6bdb12d25a9ed6946a665838d5ece1e94564377d52 +size 1705 diff --git a/data/minecraft/structure/village/plains/zombie/houses/plains_small_house_3.nbt b/data/minecraft/structure/village/plains/zombie/houses/plains_small_house_3.nbt index 606e4fc1..98ae744b 100644 --- a/data/minecraft/structure/village/plains/zombie/houses/plains_small_house_3.nbt +++ b/data/minecraft/structure/village/plains/zombie/houses/plains_small_house_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:822ec15a3204ad3576f2efb9caa132a5d7c3cee5c75c5574b63e60419209b7a7 -size 1808 +oid sha256:1450578753db7970e13932abb3c15d59c180a60b4980f2a43c40011f09a1427b +size 1807 diff --git a/data/minecraft/structure/village/plains/zombie/houses/plains_small_house_4.nbt b/data/minecraft/structure/village/plains/zombie/houses/plains_small_house_4.nbt index c3bf3f20..2ba6d055 100644 --- a/data/minecraft/structure/village/plains/zombie/houses/plains_small_house_4.nbt +++ b/data/minecraft/structure/village/plains/zombie/houses/plains_small_house_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8d1803222872ff4188428efd5a914864e9daa225dc9890669fcf02cd8007f8ce +oid sha256:cf926c5e41abd1e720b1f7ac074491ca6d0dbbfb022e38d04ddaed4955a18ceb size 1781 diff --git a/data/minecraft/structure/village/plains/zombie/houses/plains_small_house_5.nbt b/data/minecraft/structure/village/plains/zombie/houses/plains_small_house_5.nbt index 92767143..6cefb29e 100644 --- a/data/minecraft/structure/village/plains/zombie/houses/plains_small_house_5.nbt +++ b/data/minecraft/structure/village/plains/zombie/houses/plains_small_house_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:020486dabc4a109969bc8ca3e686352cb442c05ebf8614800f9f21d6cfff91c9 -size 3495 +oid sha256:be842013e7af2a20246e49a3291c4b53a6b23a799a987dbf1bffca8dc44428bd +size 3493 diff --git a/data/minecraft/structure/village/plains/zombie/houses/plains_small_house_6.nbt b/data/minecraft/structure/village/plains/zombie/houses/plains_small_house_6.nbt index b3aa9a27..e80ab1aa 100644 --- a/data/minecraft/structure/village/plains/zombie/houses/plains_small_house_6.nbt +++ b/data/minecraft/structure/village/plains/zombie/houses/plains_small_house_6.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e40ec421e92d59a9a6d97b4d5323f3b9b136811cdc34d84a27aef10c8f4488b0 -size 1766 +oid sha256:b54c34afdf9810d9602fadcf6519b3fe1c05bb2dc7030723aecb9fe76c1ab089 +size 1765 diff --git a/data/minecraft/structure/village/plains/zombie/houses/plains_small_house_7.nbt b/data/minecraft/structure/village/plains/zombie/houses/plains_small_house_7.nbt index cddbbd40..c9bec21c 100644 --- a/data/minecraft/structure/village/plains/zombie/houses/plains_small_house_7.nbt +++ b/data/minecraft/structure/village/plains/zombie/houses/plains_small_house_7.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9019de5b2aa6bc55e311c6223e1873c40b003df8f58bb7c1bf2cae949dacf876 -size 2033 +oid sha256:640d90b7e45136006136926cc15d2764f28cff7294467c2a6962bf7fe5f46969 +size 2032 diff --git a/data/minecraft/structure/village/plains/zombie/houses/plains_small_house_8.nbt b/data/minecraft/structure/village/plains/zombie/houses/plains_small_house_8.nbt index 9c1a5018..6b17aa15 100644 --- a/data/minecraft/structure/village/plains/zombie/houses/plains_small_house_8.nbt +++ b/data/minecraft/structure/village/plains/zombie/houses/plains_small_house_8.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fe5b4dd432daaa7f5db7a8546ce4eaf9bfa35d2e065b8d2d447982dffa32250b -size 2690 +oid sha256:7f74d49ebfb24560d8a801a3467893481f5ab4483491186aeb946087d73e59fe +size 2689 diff --git a/data/minecraft/structure/village/plains/zombie/houses/plains_stable_1.nbt b/data/minecraft/structure/village/plains/zombie/houses/plains_stable_1.nbt index 54362039..16cfdc45 100644 --- a/data/minecraft/structure/village/plains/zombie/houses/plains_stable_1.nbt +++ b/data/minecraft/structure/village/plains/zombie/houses/plains_stable_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:091c681dc65eb645efb46be271a3cd42a95ef1100f13e743557b01726f49e49c -size 3861 +oid sha256:51a5d479a971c4da984a86571f22523453bd8c11056ed349d817d0f84844d837 +size 3860 diff --git a/data/minecraft/structure/village/plains/zombie/streets/corner_01.nbt b/data/minecraft/structure/village/plains/zombie/streets/corner_01.nbt index 916cc1a7..feede9de 100644 --- a/data/minecraft/structure/village/plains/zombie/streets/corner_01.nbt +++ b/data/minecraft/structure/village/plains/zombie/streets/corner_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9a3e3b8f403cc8cc0f83aaf30f3813321370fc689fc01a86f2c40ae57192e500 -size 1187 +oid sha256:3d4f72dc13f3384432c64883343567f07ce30d7a6d1664142a09ee8af78e970e +size 1186 diff --git a/data/minecraft/structure/village/plains/zombie/streets/corner_02.nbt b/data/minecraft/structure/village/plains/zombie/streets/corner_02.nbt index b2ce7583..82f07a2b 100644 --- a/data/minecraft/structure/village/plains/zombie/streets/corner_02.nbt +++ b/data/minecraft/structure/village/plains/zombie/streets/corner_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5dd3175bd2e87d7fbed93ab479b454a80739f8a2273b61481ee71bbe5af068b7 -size 1114 +oid sha256:ed2fb4d11cec985b4baa142c3d6f972ff3f50541ff98df10e366cb7c67117552 +size 1113 diff --git a/data/minecraft/structure/village/plains/zombie/streets/corner_03.nbt b/data/minecraft/structure/village/plains/zombie/streets/corner_03.nbt index c2354fa5..420ca534 100644 --- a/data/minecraft/structure/village/plains/zombie/streets/corner_03.nbt +++ b/data/minecraft/structure/village/plains/zombie/streets/corner_03.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5c18ed0a6357f170bd3171499ab0f012ddd7ee7dff3f46f3fc148d86b34dfbce -size 356 +oid sha256:03f0637a55782cf4d62624a3a7a7ebd48444d5513a74f657011521f6fedf1d0c +size 354 diff --git a/data/minecraft/structure/village/plains/zombie/streets/crossroad_01.nbt b/data/minecraft/structure/village/plains/zombie/streets/crossroad_01.nbt index 040e7c61..c1d207de 100644 --- a/data/minecraft/structure/village/plains/zombie/streets/crossroad_01.nbt +++ b/data/minecraft/structure/village/plains/zombie/streets/crossroad_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ca75e14328ae45139a08e50f6631bcac35e43b376e4636456ac27184afa6b054 -size 1220 +oid sha256:d11490fc5ccc24cb1c94fbca36cc1b1ec6dc98b7aa7327d3e08b5f0f0204c65b +size 1219 diff --git a/data/minecraft/structure/village/plains/zombie/streets/crossroad_02.nbt b/data/minecraft/structure/village/plains/zombie/streets/crossroad_02.nbt index 357ca222..b632b2ce 100644 --- a/data/minecraft/structure/village/plains/zombie/streets/crossroad_02.nbt +++ b/data/minecraft/structure/village/plains/zombie/streets/crossroad_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a07f4551a1eb9e7f4394982993e0cabd5354f2599a477a62b0d016720d05f1d8 -size 1165 +oid sha256:4e29ecb792c307ac6e8b80b5fe41de245dc63db74e5e6527e07618366e71161c +size 1164 diff --git a/data/minecraft/structure/village/plains/zombie/streets/crossroad_03.nbt b/data/minecraft/structure/village/plains/zombie/streets/crossroad_03.nbt index 5be8c437..c2110bee 100644 --- a/data/minecraft/structure/village/plains/zombie/streets/crossroad_03.nbt +++ b/data/minecraft/structure/village/plains/zombie/streets/crossroad_03.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7f8ea0154054c31c5f932b2b66343d3c6c0d7491d9ff3310ef1cf5653dc507e7 -size 1208 +oid sha256:927cd67a2ef675f61a1fa5b304eeb7c0abfef0800d3398a8b2744f87f73bfaf8 +size 1207 diff --git a/data/minecraft/structure/village/plains/zombie/streets/crossroad_04.nbt b/data/minecraft/structure/village/plains/zombie/streets/crossroad_04.nbt index e7b3f6cc..f26ada37 100644 --- a/data/minecraft/structure/village/plains/zombie/streets/crossroad_04.nbt +++ b/data/minecraft/structure/village/plains/zombie/streets/crossroad_04.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:68a6a00a9a9c823f13cf86d04419891b8ea973d690add45e347c566551d9bedf -size 383 +oid sha256:d938172d5c8909c4331586079dc939a728440e86fb56bd5e7e879f94f066fbc7 +size 381 diff --git a/data/minecraft/structure/village/plains/zombie/streets/crossroad_05.nbt b/data/minecraft/structure/village/plains/zombie/streets/crossroad_05.nbt index e8bfb3da..bba89a21 100644 --- a/data/minecraft/structure/village/plains/zombie/streets/crossroad_05.nbt +++ b/data/minecraft/structure/village/plains/zombie/streets/crossroad_05.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e84b83659486c381e4feea692070f4e2cd536dc54a0a84701ad209cea25c8f47 -size 414 +oid sha256:358b5d5967c0c321dd92f16e477468450365e97964d4aa615d057c319fea6b90 +size 413 diff --git a/data/minecraft/structure/village/plains/zombie/streets/crossroad_06.nbt b/data/minecraft/structure/village/plains/zombie/streets/crossroad_06.nbt index f61a78f3..238a3c64 100644 --- a/data/minecraft/structure/village/plains/zombie/streets/crossroad_06.nbt +++ b/data/minecraft/structure/village/plains/zombie/streets/crossroad_06.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2993221f30949c4c9a3abe820bda79332a15d3e087b62bcf3c31e65c940bcb66 -size 475 +oid sha256:a226f3094a6e718c2a02b8295897ec122ea360d51a773e65f1f48eacb95c5487 +size 474 diff --git a/data/minecraft/structure/village/plains/zombie/streets/straight_01.nbt b/data/minecraft/structure/village/plains/zombie/streets/straight_01.nbt index df784fa4..8cf47b3e 100644 --- a/data/minecraft/structure/village/plains/zombie/streets/straight_01.nbt +++ b/data/minecraft/structure/village/plains/zombie/streets/straight_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c1306cc2477a11ab60d36a1dad364a63d3ccf66a5bdd75cc0e8aa6554a25f043 -size 1136 +oid sha256:97c962ab6dd587aa9582754563c2e48760573e36aaba6ddee9240c04f00d4362 +size 1135 diff --git a/data/minecraft/structure/village/plains/zombie/streets/straight_02.nbt b/data/minecraft/structure/village/plains/zombie/streets/straight_02.nbt index 6264b4ca..daa9de54 100644 --- a/data/minecraft/structure/village/plains/zombie/streets/straight_02.nbt +++ b/data/minecraft/structure/village/plains/zombie/streets/straight_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8caa10855acf076cab3ead29d0f8d1c1efcaab68c3f6183381b5ef35717ebfbd -size 1090 +oid sha256:c51289990ddcfb430f4ce327318f52e64410c78731bfa0f1223ae7eb465689e6 +size 1088 diff --git a/data/minecraft/structure/village/plains/zombie/streets/straight_03.nbt b/data/minecraft/structure/village/plains/zombie/streets/straight_03.nbt index 19a3c8a3..89fa72cf 100644 --- a/data/minecraft/structure/village/plains/zombie/streets/straight_03.nbt +++ b/data/minecraft/structure/village/plains/zombie/streets/straight_03.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1bfa99c6324559eb47421adde8fbc051d7dcdd650afd59a7ab014c0e3cbe6e8c +oid sha256:81968dcd1b8595766c9b978c6b88844f21c66f7a4afaf19f9536732e7cbd45d5 size 781 diff --git a/data/minecraft/structure/village/plains/zombie/streets/straight_04.nbt b/data/minecraft/structure/village/plains/zombie/streets/straight_04.nbt index 22562896..30ed2c37 100644 --- a/data/minecraft/structure/village/plains/zombie/streets/straight_04.nbt +++ b/data/minecraft/structure/village/plains/zombie/streets/straight_04.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a706e2d42e558b37ff0184d2eaf4a2e88649b00e5960c1caada8d907bc038dc5 -size 639 +oid sha256:06bfb38e71caa53bd329fb56b7b2e6c73114f674b912728480c99fe5aa0bbda4 +size 638 diff --git a/data/minecraft/structure/village/plains/zombie/streets/straight_05.nbt b/data/minecraft/structure/village/plains/zombie/streets/straight_05.nbt index 6f71955e..5b2f9985 100644 --- a/data/minecraft/structure/village/plains/zombie/streets/straight_05.nbt +++ b/data/minecraft/structure/village/plains/zombie/streets/straight_05.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d57f55cfa8daa0b848791019549fd3f63320d184e3c52338bee2449f882cb055 -size 1333 +oid sha256:127acc83fe5392cb17c0037b4dc0d111bca00590b98426e3e833ebed12189ba9 +size 1332 diff --git a/data/minecraft/structure/village/plains/zombie/streets/straight_06.nbt b/data/minecraft/structure/village/plains/zombie/streets/straight_06.nbt index a4ec11f0..b2007001 100644 --- a/data/minecraft/structure/village/plains/zombie/streets/straight_06.nbt +++ b/data/minecraft/structure/village/plains/zombie/streets/straight_06.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f8092949cff3e31530b5819245c1b8a161312e73b307e6161e8e11347f697f4e -size 1708 +oid sha256:cfb2040c384d916272d5bf44fc4306550e07254e0290fed66c220dc05431f3b4 +size 1707 diff --git a/data/minecraft/structure/village/plains/zombie/streets/turn_01.nbt b/data/minecraft/structure/village/plains/zombie/streets/turn_01.nbt index ecf06166..451f84bd 100644 --- a/data/minecraft/structure/village/plains/zombie/streets/turn_01.nbt +++ b/data/minecraft/structure/village/plains/zombie/streets/turn_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b394f3fd3a45ad89dc4692eceff2d44da4d5bf9dd12f407c0e7f013fd027a614 -size 794 +oid sha256:243d59542ac25cb5b6525da76e7d7ba8f77b5b825187d30eb5348bec38b5d0a9 +size 793 diff --git a/data/minecraft/structure/village/plains/zombie/town_centers/plains_fountain_01.nbt b/data/minecraft/structure/village/plains/zombie/town_centers/plains_fountain_01.nbt index ddb1ebe4..4fc9b4fd 100644 --- a/data/minecraft/structure/village/plains/zombie/town_centers/plains_fountain_01.nbt +++ b/data/minecraft/structure/village/plains/zombie/town_centers/plains_fountain_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b5beeb3d2c1a854017b72cb8d95d6b8a3400cf72329e1e7fb1cdc39c52c51216 -size 932 +oid sha256:5b53475950353b6239a40eec55af135628683cee0e029891a41fbff06dc9d325 +size 931 diff --git a/data/minecraft/structure/village/plains/zombie/town_centers/plains_meeting_point_1.nbt b/data/minecraft/structure/village/plains/zombie/town_centers/plains_meeting_point_1.nbt index 6efeef37..729371a6 100644 --- a/data/minecraft/structure/village/plains/zombie/town_centers/plains_meeting_point_1.nbt +++ b/data/minecraft/structure/village/plains/zombie/town_centers/plains_meeting_point_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7c87758ce286d29fbb3a7648bc24e9518c11d8dd322fa2e3a243d2fb4e40c038 -size 993 +oid sha256:f1f0769aae16b33d37a7eb10a3d789ccebea3ea7c08c8be9cec4dfb84abfca34 +size 992 diff --git a/data/minecraft/structure/village/plains/zombie/town_centers/plains_meeting_point_2.nbt b/data/minecraft/structure/village/plains/zombie/town_centers/plains_meeting_point_2.nbt index 4a4977b2..c8149d51 100644 --- a/data/minecraft/structure/village/plains/zombie/town_centers/plains_meeting_point_2.nbt +++ b/data/minecraft/structure/village/plains/zombie/town_centers/plains_meeting_point_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b402f54bef790ca8de312a7488b358b0da054840bc654aaedce207259eccdbba +oid sha256:b43c5b2904dd3f2e6a1b59f235fedc36af9310db55fd4498b101152a93073004 size 2482 diff --git a/data/minecraft/structure/village/plains/zombie/town_centers/plains_meeting_point_3.nbt b/data/minecraft/structure/village/plains/zombie/town_centers/plains_meeting_point_3.nbt index 1c0c7111..556cb89f 100644 --- a/data/minecraft/structure/village/plains/zombie/town_centers/plains_meeting_point_3.nbt +++ b/data/minecraft/structure/village/plains/zombie/town_centers/plains_meeting_point_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4088c84672942e7de1f11563062d7806bdeca0d88105450c3ecc4a2f60055849 -size 1527 +oid sha256:2f8d211adf7dcb4f0d043d3cf9694eee59a95369be7871e2801d93a9fc4864be +size 1526 diff --git a/data/minecraft/structure/village/plains/zombie/villagers/nitwit.nbt b/data/minecraft/structure/village/plains/zombie/villagers/nitwit.nbt index 3db6995b..b86945e4 100644 --- a/data/minecraft/structure/village/plains/zombie/villagers/nitwit.nbt +++ b/data/minecraft/structure/village/plains/zombie/villagers/nitwit.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:092b2d05cf0951bab9a0a77e2f40a127c5b35f049f5e1c988042d3ce6ab232b7 -size 722 +oid sha256:61456f97fa9db0193d2eec4c8284fb7160f929d0314f2068a262ebe90ac7bb9b +size 720 diff --git a/data/minecraft/structure/village/plains/zombie/villagers/unemployed.nbt b/data/minecraft/structure/village/plains/zombie/villagers/unemployed.nbt index 0221f914..9e55922c 100644 --- a/data/minecraft/structure/village/plains/zombie/villagers/unemployed.nbt +++ b/data/minecraft/structure/village/plains/zombie/villagers/unemployed.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:def390bed46c69b2a08e174814c5a025d6c0319e1625b4a67d21839a6e2f6673 +oid sha256:94718090659c438c36fefb15098ed41d3cce289e296867b8b169a704aa10e891 size 720 diff --git a/data/minecraft/structure/village/savanna/houses/savanna_animal_pen_1.nbt b/data/minecraft/structure/village/savanna/houses/savanna_animal_pen_1.nbt index c6fcf500..fcfe877d 100644 --- a/data/minecraft/structure/village/savanna/houses/savanna_animal_pen_1.nbt +++ b/data/minecraft/structure/village/savanna/houses/savanna_animal_pen_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1862ad11106edf492e8b028e0b5bad8e6a262b5bbfa160a83ad4e39355bfa32a -size 1859 +oid sha256:4d429ea4806fc5f354642e9c4f1b9717352cdd945cd62460c73ef22aa1a1a3d1 +size 1858 diff --git a/data/minecraft/structure/village/savanna/houses/savanna_animal_pen_2.nbt b/data/minecraft/structure/village/savanna/houses/savanna_animal_pen_2.nbt index ef78269e..3040206c 100644 --- a/data/minecraft/structure/village/savanna/houses/savanna_animal_pen_2.nbt +++ b/data/minecraft/structure/village/savanna/houses/savanna_animal_pen_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e514c33f3a24ba505c8c6cae12ac6821e491fc07a1750453ee7a6ad32aa47b90 -size 3474 +oid sha256:3d85d9ace6b31380d7c992229ef9f77efeb61b6d50dce0e42e95d9e1b363e34b +size 3473 diff --git a/data/minecraft/structure/village/savanna/houses/savanna_animal_pen_3.nbt b/data/minecraft/structure/village/savanna/houses/savanna_animal_pen_3.nbt index 7a1e8400..e2f4531c 100644 --- a/data/minecraft/structure/village/savanna/houses/savanna_animal_pen_3.nbt +++ b/data/minecraft/structure/village/savanna/houses/savanna_animal_pen_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:39260d157796a196cde5429a25efad86435f8ab9403e7a4739e7ecab26dbe31c -size 1659 +oid sha256:7849bd634345dae1409281e76fac69110aa034efa58a93eb77de7e8229d451e0 +size 1658 diff --git a/data/minecraft/structure/village/savanna/houses/savanna_armorer_1.nbt b/data/minecraft/structure/village/savanna/houses/savanna_armorer_1.nbt index cfdd4c05..813e3eb7 100644 --- a/data/minecraft/structure/village/savanna/houses/savanna_armorer_1.nbt +++ b/data/minecraft/structure/village/savanna/houses/savanna_armorer_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fbad48fd553e4d309282ee3805635bb47b7fb781f10adfa4573f49c6655417fe -size 1721 +oid sha256:32331315471c075f741e92f910aadab3c519327d403d2b140bc15a8e3f9e0026 +size 1720 diff --git a/data/minecraft/structure/village/savanna/houses/savanna_butchers_shop_1.nbt b/data/minecraft/structure/village/savanna/houses/savanna_butchers_shop_1.nbt index afae56df..c14848bb 100644 --- a/data/minecraft/structure/village/savanna/houses/savanna_butchers_shop_1.nbt +++ b/data/minecraft/structure/village/savanna/houses/savanna_butchers_shop_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2128ead7012a5f3ccf81f5196da8e3912f0d5380676ec310f50ab0fbd03d9aac -size 3938 +oid sha256:63cca37a080e721327a3519d50267ec8839a5e0911b474acf883bc7c429f2727 +size 3937 diff --git a/data/minecraft/structure/village/savanna/houses/savanna_butchers_shop_2.nbt b/data/minecraft/structure/village/savanna/houses/savanna_butchers_shop_2.nbt index 27c26dcf..27d1898d 100644 --- a/data/minecraft/structure/village/savanna/houses/savanna_butchers_shop_2.nbt +++ b/data/minecraft/structure/village/savanna/houses/savanna_butchers_shop_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ecca5c293a72d8656067358abe7708ed0ccf59fbefb4949b5b71ff2ea715e134 +oid sha256:78ff485d7ecefce905385d26eccebc39b8215abb4c223be02c89323b63d2e2cf size 2084 diff --git a/data/minecraft/structure/village/savanna/houses/savanna_cartographer_1.nbt b/data/minecraft/structure/village/savanna/houses/savanna_cartographer_1.nbt index 305bd0ea..c25b0a96 100644 --- a/data/minecraft/structure/village/savanna/houses/savanna_cartographer_1.nbt +++ b/data/minecraft/structure/village/savanna/houses/savanna_cartographer_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:deb0965601953bedea08a2a34012f1b843acd9867a431f4626bc78de2079fdff -size 2643 +oid sha256:7f1795e82c4e4e846a4ffd6e443449d01ff97c2e0bad198518f6feb0605dd59e +size 2642 diff --git a/data/minecraft/structure/village/savanna/houses/savanna_fisher_cottage_1.nbt b/data/minecraft/structure/village/savanna/houses/savanna_fisher_cottage_1.nbt index 776ea4d9..ba1442d3 100644 --- a/data/minecraft/structure/village/savanna/houses/savanna_fisher_cottage_1.nbt +++ b/data/minecraft/structure/village/savanna/houses/savanna_fisher_cottage_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:49dd68d468d0798601043e5b7041b0d0b451d812159a2a01dd8dc5ebda7dc448 +oid sha256:cdeddcb2942ae9b8a3d6778cfe4781ad5584df1121c2829506a9ea253040ebb8 size 3177 diff --git a/data/minecraft/structure/village/savanna/houses/savanna_fletcher_house_1.nbt b/data/minecraft/structure/village/savanna/houses/savanna_fletcher_house_1.nbt index a4ac957b..750ead22 100644 --- a/data/minecraft/structure/village/savanna/houses/savanna_fletcher_house_1.nbt +++ b/data/minecraft/structure/village/savanna/houses/savanna_fletcher_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b9685872ddd5fe05dd2c1acd84e3d6e728c657e2768c7abb24b0984e1e30097c -size 3034 +oid sha256:8609e9392fde31be3bc820c0ab2bd823fdc9ec90f4ee0e6e5cef306c9fab97b7 +size 3033 diff --git a/data/minecraft/structure/village/savanna/houses/savanna_large_farm_1.nbt b/data/minecraft/structure/village/savanna/houses/savanna_large_farm_1.nbt index 13f433b3..199e9d0a 100644 --- a/data/minecraft/structure/village/savanna/houses/savanna_large_farm_1.nbt +++ b/data/minecraft/structure/village/savanna/houses/savanna_large_farm_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:99c9acede43051952295f0e2a8a319597c0021ed2a5b7de2af05890f4edb082c -size 1245 +oid sha256:f0d35f70f52f1bda231f440c6e786aa945b1c4abaec255abb59b585a366bea5a +size 1244 diff --git a/data/minecraft/structure/village/savanna/houses/savanna_large_farm_2.nbt b/data/minecraft/structure/village/savanna/houses/savanna_large_farm_2.nbt index 072aa5c9..009fdb60 100644 --- a/data/minecraft/structure/village/savanna/houses/savanna_large_farm_2.nbt +++ b/data/minecraft/structure/village/savanna/houses/savanna_large_farm_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b84e9d8708f24a2d74452d284156ba04c0026ba415c04d953c26fe1a3258ea2d +oid sha256:87dc922afd11b008d88da237fadbb26e7cf1e4a05199a1ddbeb9535f361db14a size 2151 diff --git a/data/minecraft/structure/village/savanna/houses/savanna_library_1.nbt b/data/minecraft/structure/village/savanna/houses/savanna_library_1.nbt index 73e3977e..42f8b113 100644 --- a/data/minecraft/structure/village/savanna/houses/savanna_library_1.nbt +++ b/data/minecraft/structure/village/savanna/houses/savanna_library_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:320b5e9ff9613af36f5d9346bc648663364891476938a1e75d081d5068bc1de0 -size 2768 +oid sha256:201a9122be856a0672b809562cd6fba253ac43fa72eeea7a1b1fc6e6149f370b +size 2767 diff --git a/data/minecraft/structure/village/savanna/houses/savanna_mason_1.nbt b/data/minecraft/structure/village/savanna/houses/savanna_mason_1.nbt index 1ddc3bc6..0a0da9ba 100644 --- a/data/minecraft/structure/village/savanna/houses/savanna_mason_1.nbt +++ b/data/minecraft/structure/village/savanna/houses/savanna_mason_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1aaa28d33fd4313b69d5f7d0534e5efedcf6d1ee9bf4e04649c876c9e819d4ab -size 2519 +oid sha256:0150fd36adfc1c467b807cc54e38bbc267fd368ab9b1144883be9429225e0139 +size 2518 diff --git a/data/minecraft/structure/village/savanna/houses/savanna_medium_house_1.nbt b/data/minecraft/structure/village/savanna/houses/savanna_medium_house_1.nbt index f944cdb5..2ad91cd7 100644 --- a/data/minecraft/structure/village/savanna/houses/savanna_medium_house_1.nbt +++ b/data/minecraft/structure/village/savanna/houses/savanna_medium_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:37c462a65836977381f330efe923101776728b62e94051b18aed48aad62685bc -size 3640 +oid sha256:c24703e910bddb1e3c68649d7f8ff0bc1d62b62f7972ad2fab3de93734b4062c +size 3639 diff --git a/data/minecraft/structure/village/savanna/houses/savanna_medium_house_2.nbt b/data/minecraft/structure/village/savanna/houses/savanna_medium_house_2.nbt index 8fac9c8b..269f2038 100644 --- a/data/minecraft/structure/village/savanna/houses/savanna_medium_house_2.nbt +++ b/data/minecraft/structure/village/savanna/houses/savanna_medium_house_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:424b5666e91b1701c5c955e052b9093881c2546b30888889e58925864a805778 -size 1857 +oid sha256:53fdda53882bad8eb035570503330632f3586daa6e6dd9e65698e38c96b3fca1 +size 1856 diff --git a/data/minecraft/structure/village/savanna/houses/savanna_shepherd_1.nbt b/data/minecraft/structure/village/savanna/houses/savanna_shepherd_1.nbt index 62878f90..7342bf60 100644 --- a/data/minecraft/structure/village/savanna/houses/savanna_shepherd_1.nbt +++ b/data/minecraft/structure/village/savanna/houses/savanna_shepherd_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bd697afda9ab822b4dfe04238a7bd07fae3c6b351e9569aa93e2aac7dc4c365c -size 6326 +oid sha256:4ea5c33ab87200217171ecb55fca1d3c3a39ab565c1b3f8dea7d99dfa80d5707 +size 6324 diff --git a/data/minecraft/structure/village/savanna/houses/savanna_small_farm.nbt b/data/minecraft/structure/village/savanna/houses/savanna_small_farm.nbt index a2869212..2fa4d0bd 100644 --- a/data/minecraft/structure/village/savanna/houses/savanna_small_farm.nbt +++ b/data/minecraft/structure/village/savanna/houses/savanna_small_farm.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:209b9cda12a889a70469ddf1bef5e7db482bf4857cd915d06d264637b563ac05 -size 1137 +oid sha256:b7ac633f755ff07d1010ea83afaf720b69aecdf92b4145ad8ae75349fb0171c7 +size 1136 diff --git a/data/minecraft/structure/village/savanna/houses/savanna_small_house_1.nbt b/data/minecraft/structure/village/savanna/houses/savanna_small_house_1.nbt index ab5eb832..efcc3510 100644 --- a/data/minecraft/structure/village/savanna/houses/savanna_small_house_1.nbt +++ b/data/minecraft/structure/village/savanna/houses/savanna_small_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4d9e49341fda55f423eb9eb8ad04ffcb9cf105b313b5804a5b0385182c73968f +oid sha256:3b55432eceaa8ca1915bd9993544c4569d7899a9b1432d4f67df029a41a2678c size 1849 diff --git a/data/minecraft/structure/village/savanna/houses/savanna_small_house_2.nbt b/data/minecraft/structure/village/savanna/houses/savanna_small_house_2.nbt index 556bcaa9..fc216fa7 100644 --- a/data/minecraft/structure/village/savanna/houses/savanna_small_house_2.nbt +++ b/data/minecraft/structure/village/savanna/houses/savanna_small_house_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5f1a00eeec3d40b2229bdf286a869945e2bff1a7017f0fdc154a3949787a70ea -size 1858 +oid sha256:b04c4066defa4937b7ddbe80e363a8f09cd88e04674b09525a84e3f905f052f6 +size 1857 diff --git a/data/minecraft/structure/village/savanna/houses/savanna_small_house_3.nbt b/data/minecraft/structure/village/savanna/houses/savanna_small_house_3.nbt index bc53062e..c4d40c69 100644 --- a/data/minecraft/structure/village/savanna/houses/savanna_small_house_3.nbt +++ b/data/minecraft/structure/village/savanna/houses/savanna_small_house_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e7f455c741cc5ea1ab203e42805bd7ebd3b1ca03668385c6445bd8875e2f5a16 -size 1811 +oid sha256:a8f2219a8fb961f56e547b548a8dd4bab999e87ca66137216368a48a5b92a432 +size 1810 diff --git a/data/minecraft/structure/village/savanna/houses/savanna_small_house_4.nbt b/data/minecraft/structure/village/savanna/houses/savanna_small_house_4.nbt index eff30223..e9393039 100644 --- a/data/minecraft/structure/village/savanna/houses/savanna_small_house_4.nbt +++ b/data/minecraft/structure/village/savanna/houses/savanna_small_house_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:57dbcc916c40aeb1ce7d34e86f38651078613f5e57cbf7482807ccde93465f83 -size 2705 +oid sha256:0faba47d07cc65246712a2ef324aa396eb36806e5e9861cf5941225bb55a31b6 +size 2704 diff --git a/data/minecraft/structure/village/savanna/houses/savanna_small_house_5.nbt b/data/minecraft/structure/village/savanna/houses/savanna_small_house_5.nbt index 67f997e6..cdd12dc5 100644 --- a/data/minecraft/structure/village/savanna/houses/savanna_small_house_5.nbt +++ b/data/minecraft/structure/village/savanna/houses/savanna_small_house_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6b53b63db6a877073f226672a6f3c0cc3317dae51efb8b901f0fa63072fb340e -size 2372 +oid sha256:e79d9a725d74cc6071db077fcfb91b3bb658b5e0ae0b9be17a65012fb1ba42e3 +size 2371 diff --git a/data/minecraft/structure/village/savanna/houses/savanna_small_house_6.nbt b/data/minecraft/structure/village/savanna/houses/savanna_small_house_6.nbt index 9677484b..90232c6f 100644 --- a/data/minecraft/structure/village/savanna/houses/savanna_small_house_6.nbt +++ b/data/minecraft/structure/village/savanna/houses/savanna_small_house_6.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:16e83a30f63a8f6450c00563c1c737837fbbe52da4fc3dec3297f5c433030add -size 1785 +oid sha256:ad1b2a32863c7d2408c7d01493172f332686e025b79b8a18b2ecf3b62c8d8baa +size 1784 diff --git a/data/minecraft/structure/village/savanna/houses/savanna_small_house_7.nbt b/data/minecraft/structure/village/savanna/houses/savanna_small_house_7.nbt index f3c92c59..09e65f36 100644 --- a/data/minecraft/structure/village/savanna/houses/savanna_small_house_7.nbt +++ b/data/minecraft/structure/village/savanna/houses/savanna_small_house_7.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:45013ca41f15f94dd6aed959152fdb628c718fe06609983e664dc5b28c6e3833 +oid sha256:30461de993a67756b959c7522e73b751637ea3ae547a6a2ae5077e6e3c1c4971 size 1881 diff --git a/data/minecraft/structure/village/savanna/houses/savanna_small_house_8.nbt b/data/minecraft/structure/village/savanna/houses/savanna_small_house_8.nbt index 4f3925e8..eb0fffcd 100644 --- a/data/minecraft/structure/village/savanna/houses/savanna_small_house_8.nbt +++ b/data/minecraft/structure/village/savanna/houses/savanna_small_house_8.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:acdd26608133a135d3f6afaaa3e4c9ce8e6aa4fb98c0a1bbf813ac48456e7134 -size 1545 +oid sha256:57b43408e4818ecf755a11bac423b931a6b1a894f2fde8211d1fa4a11064f9bb +size 1544 diff --git a/data/minecraft/structure/village/savanna/houses/savanna_tannery_1.nbt b/data/minecraft/structure/village/savanna/houses/savanna_tannery_1.nbt index f872d31c..4cc57766 100644 --- a/data/minecraft/structure/village/savanna/houses/savanna_tannery_1.nbt +++ b/data/minecraft/structure/village/savanna/houses/savanna_tannery_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b42edcba6e2ec49dca4ce3f93d2a7a96f04d620c1f5911adef2f1fb64ee87f97 -size 2131 +oid sha256:7a679caeb0ab6761fb34af4d240469c747c8f116c78dfc1883776e373f46d40e +size 2130 diff --git a/data/minecraft/structure/village/savanna/houses/savanna_temple_1.nbt b/data/minecraft/structure/village/savanna/houses/savanna_temple_1.nbt index dc599d88..3e979134 100644 --- a/data/minecraft/structure/village/savanna/houses/savanna_temple_1.nbt +++ b/data/minecraft/structure/village/savanna/houses/savanna_temple_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b95781a8bee2fa5c22065f3643614e9b29b135947c0e3f6f5a1359ac97adf309 -size 3628 +oid sha256:13ad977e94e76463d8afb4b90598eb0b978b446aba7afb5a7744f2b2532e9f10 +size 3627 diff --git a/data/minecraft/structure/village/savanna/houses/savanna_temple_2.nbt b/data/minecraft/structure/village/savanna/houses/savanna_temple_2.nbt index 06df10da..3151862d 100644 --- a/data/minecraft/structure/village/savanna/houses/savanna_temple_2.nbt +++ b/data/minecraft/structure/village/savanna/houses/savanna_temple_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cfd344fb0add9a44bb46c42c5f6677b04da0eaf2cda28dff37556ca973fb4af9 -size 2024 +oid sha256:3ac896f0b59a58f75ceb42e9c4e42bf1d56b4a6be5c58a3373a9070a82f31d39 +size 2023 diff --git a/data/minecraft/structure/village/savanna/houses/savanna_tool_smith_1.nbt b/data/minecraft/structure/village/savanna/houses/savanna_tool_smith_1.nbt index 023a1aa5..ad6f885e 100644 --- a/data/minecraft/structure/village/savanna/houses/savanna_tool_smith_1.nbt +++ b/data/minecraft/structure/village/savanna/houses/savanna_tool_smith_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:175334a481fa7b761ad5d897305a1de6a02af5e0f10f247b918fcf02a4ad5a1f -size 2461 +oid sha256:05611032f88d06e2c30461040fbb54fa07bbdc8d9ce9f24f11b9f94c67cd8338 +size 2460 diff --git a/data/minecraft/structure/village/savanna/houses/savanna_weaponsmith_1.nbt b/data/minecraft/structure/village/savanna/houses/savanna_weaponsmith_1.nbt index 1983f86c..4b152a9e 100644 --- a/data/minecraft/structure/village/savanna/houses/savanna_weaponsmith_1.nbt +++ b/data/minecraft/structure/village/savanna/houses/savanna_weaponsmith_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:98449cea1486f4bb8db414c7a19e361093c1fadb0a369bf690f6a8d22c0f5e6f -size 2079 +oid sha256:4932751f136e142b60ce75dac76cbb71dd24d05e601db2b97334543ae0e5daa3 +size 2078 diff --git a/data/minecraft/structure/village/savanna/houses/savanna_weaponsmith_2.nbt b/data/minecraft/structure/village/savanna/houses/savanna_weaponsmith_2.nbt index cf89b098..d180bca6 100644 --- a/data/minecraft/structure/village/savanna/houses/savanna_weaponsmith_2.nbt +++ b/data/minecraft/structure/village/savanna/houses/savanna_weaponsmith_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4dd30c1f511a491bfed1108737bd701d19ca5f0a992a4a1cba910b98b4c1a035 +oid sha256:a607e55cec2c5498773404238a5a87632734cdf039fe49023acc741f186f9e9a size 2196 diff --git a/data/minecraft/structure/village/savanna/savanna_lamp_post_01.nbt b/data/minecraft/structure/village/savanna/savanna_lamp_post_01.nbt index 09f9b32a..8cfebb7e 100644 --- a/data/minecraft/structure/village/savanna/savanna_lamp_post_01.nbt +++ b/data/minecraft/structure/village/savanna/savanna_lamp_post_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4a6705c5593defad71d5e8bd71a25ad88ebcd76f73828ecf3d3a22ab8629ce47 +oid sha256:aa950de145e6926f110ff7ec0360f586b871569444c7966323b908787ef36024 size 282 diff --git a/data/minecraft/structure/village/savanna/streets/corner_01.nbt b/data/minecraft/structure/village/savanna/streets/corner_01.nbt index 6e55751b..b57a8da7 100644 --- a/data/minecraft/structure/village/savanna/streets/corner_01.nbt +++ b/data/minecraft/structure/village/savanna/streets/corner_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:00492fcfe4b04fc89bda583f74eab7e68d50d327e1c073ebbcb8461c4757fcbd +oid sha256:a5819338fde949021ba83c4b27ece21a0d8a342910b017e44ed7fef7516c2052 size 1197 diff --git a/data/minecraft/structure/village/savanna/streets/corner_03.nbt b/data/minecraft/structure/village/savanna/streets/corner_03.nbt index 2425a531..dcab7038 100644 --- a/data/minecraft/structure/village/savanna/streets/corner_03.nbt +++ b/data/minecraft/structure/village/savanna/streets/corner_03.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ecaa08e72570b8c1372c4aea10496d95621519c74918fab3d8501e73b337316e -size 351 +oid sha256:c153f56560a2cbf05c1ac75420b021e27b7d9ce90cc66c34989faf2f3a641a0f +size 350 diff --git a/data/minecraft/structure/village/savanna/streets/crossroad_02.nbt b/data/minecraft/structure/village/savanna/streets/crossroad_02.nbt index 3567dc8f..2ead4ad0 100644 --- a/data/minecraft/structure/village/savanna/streets/crossroad_02.nbt +++ b/data/minecraft/structure/village/savanna/streets/crossroad_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f3c683c5af683a5b7c6d80baca96cfdbd1dbc6d334fc2787d0ab0ec0c7099678 -size 626 +oid sha256:342f4c4180d36b8774414f680c200e070e8dbc885aa4660fcd50d90112527bb8 +size 625 diff --git a/data/minecraft/structure/village/savanna/streets/crossroad_03.nbt b/data/minecraft/structure/village/savanna/streets/crossroad_03.nbt index 1caa87a3..e5cabbbe 100644 --- a/data/minecraft/structure/village/savanna/streets/crossroad_03.nbt +++ b/data/minecraft/structure/village/savanna/streets/crossroad_03.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bf84d45263489bc86d2f97690754121f3fe8145ed4917fc2858cfbefc8d8b40c -size 1226 +oid sha256:083fa602ac326c3df42eb0fefce3c914c9938c425d6177ff49f4e6c6f68f40e6 +size 1225 diff --git a/data/minecraft/structure/village/savanna/streets/crossroad_04.nbt b/data/minecraft/structure/village/savanna/streets/crossroad_04.nbt index 92574337..8384958b 100644 --- a/data/minecraft/structure/village/savanna/streets/crossroad_04.nbt +++ b/data/minecraft/structure/village/savanna/streets/crossroad_04.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8ba5c96319d0be306e9c2ea9ca716468b5c0b4c4c45ec435e074430f45a76c95 -size 379 +oid sha256:68d19ad1ecacfed019be06e613132538f344c864da51b1252b37ee77728d7330 +size 378 diff --git a/data/minecraft/structure/village/savanna/streets/crossroad_05.nbt b/data/minecraft/structure/village/savanna/streets/crossroad_05.nbt index 4ca11744..80760b07 100644 --- a/data/minecraft/structure/village/savanna/streets/crossroad_05.nbt +++ b/data/minecraft/structure/village/savanna/streets/crossroad_05.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e3073f9a251b3ae67dea694836863eb5acb1b39d1416f9de7607a68e2c23907e -size 410 +oid sha256:ec181e62ceedd2dd2d16eb01243f21bb16051681f85cbf22e0dfd6feb62c3190 +size 409 diff --git a/data/minecraft/structure/village/savanna/streets/crossroad_06.nbt b/data/minecraft/structure/village/savanna/streets/crossroad_06.nbt index c968edd4..56867b00 100644 --- a/data/minecraft/structure/village/savanna/streets/crossroad_06.nbt +++ b/data/minecraft/structure/village/savanna/streets/crossroad_06.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6e5f3d03bda74b3e969b9570585be6aba3db7811b068a06c1003bad90910a376 -size 467 +oid sha256:2ab1ce2d319401060566628190b95790b7e52263629a7860e06b653fa77f9ec9 +size 466 diff --git a/data/minecraft/structure/village/savanna/streets/crossroad_07.nbt b/data/minecraft/structure/village/savanna/streets/crossroad_07.nbt index ffaba23e..0e4c1c70 100644 --- a/data/minecraft/structure/village/savanna/streets/crossroad_07.nbt +++ b/data/minecraft/structure/village/savanna/streets/crossroad_07.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e0f07016235036a2b4fdc12ad25f50d11e8455e9678337bac74804a48e9fe6e9 -size 1381 +oid sha256:8b25695fb2c16520fdb88defa1c5427f383d465e1581578160dccd2973c1d8c8 +size 1380 diff --git a/data/minecraft/structure/village/savanna/streets/split_01.nbt b/data/minecraft/structure/village/savanna/streets/split_01.nbt index 4938c0e6..f7aec5d7 100644 --- a/data/minecraft/structure/village/savanna/streets/split_01.nbt +++ b/data/minecraft/structure/village/savanna/streets/split_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7fc056d802888c4ac62d22a87a90144bccbff5f7806273d2ae4d8ade2591b7a6 -size 524 +oid sha256:01d71e430788ed42c44f6edebc9fe3c26616103c03798e1911eebb79d56c980e +size 523 diff --git a/data/minecraft/structure/village/savanna/streets/split_02.nbt b/data/minecraft/structure/village/savanna/streets/split_02.nbt index 19d55448..f84fa23e 100644 --- a/data/minecraft/structure/village/savanna/streets/split_02.nbt +++ b/data/minecraft/structure/village/savanna/streets/split_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6f4b1391fa7215124d8b9d51f59663f1ed8b717fffe360ff5231aa75125ec0b0 -size 736 +oid sha256:cdde501705ee2c9d4106c2864492e6bc41f8c0338e8ead64fffb45f5f0ca5994 +size 734 diff --git a/data/minecraft/structure/village/savanna/streets/straight_02.nbt b/data/minecraft/structure/village/savanna/streets/straight_02.nbt index 0ef6da4f..61750c00 100644 --- a/data/minecraft/structure/village/savanna/streets/straight_02.nbt +++ b/data/minecraft/structure/village/savanna/streets/straight_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:80b95909de6bc3907b01f50717e1f7442d0da9a464039d6f23b379d103784d26 -size 1124 +oid sha256:20ac5cc2ba90e14986764aefad1e47a4506439a613a3872d53680f7acff16dc9 +size 1123 diff --git a/data/minecraft/structure/village/savanna/streets/straight_04.nbt b/data/minecraft/structure/village/savanna/streets/straight_04.nbt index c96c8c6a..bc1b5e94 100644 --- a/data/minecraft/structure/village/savanna/streets/straight_04.nbt +++ b/data/minecraft/structure/village/savanna/streets/straight_04.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:274f70e3adbad3fc7f8c25803fbb39960d08399e770c889f3d7e5f8350e8bf9a -size 640 +oid sha256:b5e64647fa3469543e4e60519a66d86c8adb0168676a56a11a7c9256ead6351d +size 639 diff --git a/data/minecraft/structure/village/savanna/streets/straight_05.nbt b/data/minecraft/structure/village/savanna/streets/straight_05.nbt index 02e9a0a1..f3333dec 100644 --- a/data/minecraft/structure/village/savanna/streets/straight_05.nbt +++ b/data/minecraft/structure/village/savanna/streets/straight_05.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e142d0f3cb4bb7ddb1a9b7a2d238c140fa816c5e9ce87fd2c2e1292c512f71b8 -size 1929 +oid sha256:8c951af83d30dff6e7cc1f9a44906f6d2181fbb82aca3aaa62e608e7c43565f2 +size 1927 diff --git a/data/minecraft/structure/village/savanna/streets/straight_06.nbt b/data/minecraft/structure/village/savanna/streets/straight_06.nbt index 6e476733..0b2ab439 100644 --- a/data/minecraft/structure/village/savanna/streets/straight_06.nbt +++ b/data/minecraft/structure/village/savanna/streets/straight_06.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6865a86cad8329b6214228707728dbcecd7106be0811485730c8080edf07c9d0 -size 1087 +oid sha256:00d45a70bf10286a0d542b530d15a72ed224b19d8b2e6ec17da8b52a7f78bf24 +size 1086 diff --git a/data/minecraft/structure/village/savanna/streets/straight_08.nbt b/data/minecraft/structure/village/savanna/streets/straight_08.nbt index bef4aaa1..7d938c51 100644 --- a/data/minecraft/structure/village/savanna/streets/straight_08.nbt +++ b/data/minecraft/structure/village/savanna/streets/straight_08.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:425e69d75f3f6c49cf8cba96ec372a324019a3e66d0b94b681cc5a7be7bc93ba -size 939 +oid sha256:01868646f35cacd4afabdeaa459e3d8df9ea48c09e3d9ffa54660a41f0ebbfd0 +size 938 diff --git a/data/minecraft/structure/village/savanna/streets/straight_09.nbt b/data/minecraft/structure/village/savanna/streets/straight_09.nbt index 7e9e5d20..9260cac2 100644 --- a/data/minecraft/structure/village/savanna/streets/straight_09.nbt +++ b/data/minecraft/structure/village/savanna/streets/straight_09.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0785c349958cc54e95ccc1c1173d65c0d2d85e961c59b88c3fb67af222f05b42 -size 1522 +oid sha256:27dbac083df5131e4ef3e3a3b1b58e771a182e05dc8846515a90542f05646b6f +size 1521 diff --git a/data/minecraft/structure/village/savanna/streets/straight_10.nbt b/data/minecraft/structure/village/savanna/streets/straight_10.nbt index e7bfeb86..3bf04746 100644 --- a/data/minecraft/structure/village/savanna/streets/straight_10.nbt +++ b/data/minecraft/structure/village/savanna/streets/straight_10.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1d589c7a71c31bc9ab771e6a1c6bf25b9bbc2ec152bca03ab4de0acf7392c43d -size 523 +oid sha256:07fa2d1fdaa305ddb5cb8b4b5921d6111eb67402a4469af5ab0337b6afb5a1f8 +size 522 diff --git a/data/minecraft/structure/village/savanna/streets/straight_11.nbt b/data/minecraft/structure/village/savanna/streets/straight_11.nbt index 08cec265..c240a157 100644 --- a/data/minecraft/structure/village/savanna/streets/straight_11.nbt +++ b/data/minecraft/structure/village/savanna/streets/straight_11.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f08759e8f9a33f7a38977ebd18e16a57ec31c2fda16e0cc482f2412204eacc65 -size 1560 +oid sha256:efc7ea7dc297fff7ee10dcd970e22ba1f1fe983e987b7c4eb293f0562cc706b0 +size 1559 diff --git a/data/minecraft/structure/village/savanna/streets/turn_01.nbt b/data/minecraft/structure/village/savanna/streets/turn_01.nbt index b711a130..1855993d 100644 --- a/data/minecraft/structure/village/savanna/streets/turn_01.nbt +++ b/data/minecraft/structure/village/savanna/streets/turn_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d89e710bce15e32214c5afa38ffff5d9a23b89be85b8b934796ff09dad1d353f -size 1158 +oid sha256:f39b3d7081c3cab5a6228928f9ad9e550074db68d714ac7f409a6586fe941099 +size 1157 diff --git a/data/minecraft/structure/village/savanna/terminators/terminator_05.nbt b/data/minecraft/structure/village/savanna/terminators/terminator_05.nbt index 16962ec8..afd982f4 100644 --- a/data/minecraft/structure/village/savanna/terminators/terminator_05.nbt +++ b/data/minecraft/structure/village/savanna/terminators/terminator_05.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:acbc71d72067c0e5b5eed2cc8b2ce4e57e293e39c446e42610387d80dcecad61 -size 1190 +oid sha256:6898651cd13776bf5e72aee64fb7a2d2a69ddfab3a2495876e5006dd8d542fb6 +size 1189 diff --git a/data/minecraft/structure/village/savanna/town_centers/savanna_meeting_point_1.nbt b/data/minecraft/structure/village/savanna/town_centers/savanna_meeting_point_1.nbt index 355c6802..e749c451 100644 --- a/data/minecraft/structure/village/savanna/town_centers/savanna_meeting_point_1.nbt +++ b/data/minecraft/structure/village/savanna/town_centers/savanna_meeting_point_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7dc4f5e0a86af073c7d65a8c7565a71d75aad5bf7cc96f1a66c6c9e506e8f837 -size 3285 +oid sha256:3f428deabc72f5b4665808eb61ae2e5e7631ed068484fc9c46b5b670d6bfa85b +size 3284 diff --git a/data/minecraft/structure/village/savanna/town_centers/savanna_meeting_point_2.nbt b/data/minecraft/structure/village/savanna/town_centers/savanna_meeting_point_2.nbt index 6cda4512..f7e12c28 100644 --- a/data/minecraft/structure/village/savanna/town_centers/savanna_meeting_point_2.nbt +++ b/data/minecraft/structure/village/savanna/town_centers/savanna_meeting_point_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3eb97f8c93b2f965ecf4980df88e98b7f20f7f4c0129b73ef785467f877c6748 -size 1117 +oid sha256:880f1ea7d8c2574aa6b06b9733bc514ea3efb4a3c8ee5a3c088221249b23e39b +size 1116 diff --git a/data/minecraft/structure/village/savanna/town_centers/savanna_meeting_point_3.nbt b/data/minecraft/structure/village/savanna/town_centers/savanna_meeting_point_3.nbt index 73cff82d..49126104 100644 --- a/data/minecraft/structure/village/savanna/town_centers/savanna_meeting_point_3.nbt +++ b/data/minecraft/structure/village/savanna/town_centers/savanna_meeting_point_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d603a02f2a1ca59cfb51f18e60df3c07ab5f2fd2077bbe1f6248d629689b0e92 -size 980 +oid sha256:6cff89ce18814c7bb33a85af32a44a06549735163d5269e73121e16b97f3a9a9 +size 979 diff --git a/data/minecraft/structure/village/savanna/town_centers/savanna_meeting_point_4.nbt b/data/minecraft/structure/village/savanna/town_centers/savanna_meeting_point_4.nbt index 6f3749ca..d19c2c67 100644 --- a/data/minecraft/structure/village/savanna/town_centers/savanna_meeting_point_4.nbt +++ b/data/minecraft/structure/village/savanna/town_centers/savanna_meeting_point_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:93900145435bd210ac368f09ec7783d7d4d3eb31eefdacdf5f9ced1773d0e7b5 -size 1185 +oid sha256:7adf736c2f3cae3e7bcf72dc28fdf41816e6491915e7822a2b498c38a05504ab +size 1184 diff --git a/data/minecraft/structure/village/savanna/villagers/baby.nbt b/data/minecraft/structure/village/savanna/villagers/baby.nbt index 7dd6f6a8..c1bc2658 100644 --- a/data/minecraft/structure/village/savanna/villagers/baby.nbt +++ b/data/minecraft/structure/village/savanna/villagers/baby.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:178da9b8f5f1c00f1ae79066af7be89380e01efd050672c658088b741082e2c8 -size 719 +oid sha256:7b9508840d5921ae3596c386a9f24fc60d8a3b603b97c40142dc4e3021b159e7 +size 721 diff --git a/data/minecraft/structure/village/savanna/villagers/nitwit.nbt b/data/minecraft/structure/village/savanna/villagers/nitwit.nbt index c92d2f21..7e2e7364 100644 --- a/data/minecraft/structure/village/savanna/villagers/nitwit.nbt +++ b/data/minecraft/structure/village/savanna/villagers/nitwit.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:646252ab3976816908fd574a988be28c0fa68903e2d5baab7d87edf05e01fe67 -size 718 +oid sha256:8f0cc22fdcf9bca997850c797d845e511b44d3504efbae9315e2f3e943c1b468 +size 717 diff --git a/data/minecraft/structure/village/savanna/villagers/unemployed.nbt b/data/minecraft/structure/village/savanna/villagers/unemployed.nbt index 91138a70..9ca1b4af 100644 --- a/data/minecraft/structure/village/savanna/villagers/unemployed.nbt +++ b/data/minecraft/structure/village/savanna/villagers/unemployed.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e70482e6ae41d7545fc5b5c81ab0b7f85da59a46d0aa6ff9b26269f222b77992 +oid sha256:206010ea2b5de41b7260a1b1bd067b129a80ea898dda5c7112e476aef4fa41cb size 715 diff --git a/data/minecraft/structure/village/savanna/zombie/houses/savanna_animal_pen_2.nbt b/data/minecraft/structure/village/savanna/zombie/houses/savanna_animal_pen_2.nbt index 47c00424..06c357fc 100644 --- a/data/minecraft/structure/village/savanna/zombie/houses/savanna_animal_pen_2.nbt +++ b/data/minecraft/structure/village/savanna/zombie/houses/savanna_animal_pen_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:172205924926cf14011f1307c01e84f2ddda592fae9066d53531d208a43bebab -size 3481 +oid sha256:081968ef5aa6aa360716628cdc03d082279d917e4d0f8841239fcce47c4ea4e4 +size 3480 diff --git a/data/minecraft/structure/village/savanna/zombie/houses/savanna_animal_pen_3.nbt b/data/minecraft/structure/village/savanna/zombie/houses/savanna_animal_pen_3.nbt index 905324e0..368b943d 100644 --- a/data/minecraft/structure/village/savanna/zombie/houses/savanna_animal_pen_3.nbt +++ b/data/minecraft/structure/village/savanna/zombie/houses/savanna_animal_pen_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7fbd91e3074a9c07627c35b1bcc382efabb53f3b80d5581b113b04b96861352b -size 1666 +oid sha256:1c24e11f86e9ac5519e39fd34a9633b82369949e72ae3500659823b565a3cb29 +size 1665 diff --git a/data/minecraft/structure/village/savanna/zombie/houses/savanna_large_farm_2.nbt b/data/minecraft/structure/village/savanna/zombie/houses/savanna_large_farm_2.nbt index 4d16f2a3..5b5d6ccd 100644 --- a/data/minecraft/structure/village/savanna/zombie/houses/savanna_large_farm_2.nbt +++ b/data/minecraft/structure/village/savanna/zombie/houses/savanna_large_farm_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:81fdedd252d8d46e6612e968c9a7ad87f35ac6b21f6faf5819886bf429554059 -size 2160 +oid sha256:93982dc78e9b6b4a8b6089dd6d6b39e0bdf848b16610beee41b740126a425c79 +size 2159 diff --git a/data/minecraft/structure/village/savanna/zombie/houses/savanna_medium_house_1.nbt b/data/minecraft/structure/village/savanna/zombie/houses/savanna_medium_house_1.nbt index 602440d8..dbcba215 100644 --- a/data/minecraft/structure/village/savanna/zombie/houses/savanna_medium_house_1.nbt +++ b/data/minecraft/structure/village/savanna/zombie/houses/savanna_medium_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b3f0c8654044d31aa17ae33f6690a52145f87f098dc033b345de06a9f7828e62 -size 3644 +oid sha256:d0dee27a9fa358108151f20163b5a4ffe7dfef8eadd4a42ea8210e5391c78c3b +size 3643 diff --git a/data/minecraft/structure/village/savanna/zombie/houses/savanna_medium_house_2.nbt b/data/minecraft/structure/village/savanna/zombie/houses/savanna_medium_house_2.nbt index e93347a1..69ba19a2 100644 --- a/data/minecraft/structure/village/savanna/zombie/houses/savanna_medium_house_2.nbt +++ b/data/minecraft/structure/village/savanna/zombie/houses/savanna_medium_house_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eb8760f0d57c0d55a86d0ee76d65b2d5474a235b5c92832b8a4618e7f0891922 -size 1864 +oid sha256:bd47ab3f108670059ce2e8c640be1782c6324eb86fb9e7d311dc2abd50b1ee30 +size 1863 diff --git a/data/minecraft/structure/village/savanna/zombie/houses/savanna_small_house_1.nbt b/data/minecraft/structure/village/savanna/zombie/houses/savanna_small_house_1.nbt index 8fbf5220..b8097cec 100644 --- a/data/minecraft/structure/village/savanna/zombie/houses/savanna_small_house_1.nbt +++ b/data/minecraft/structure/village/savanna/zombie/houses/savanna_small_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a260cfc93b2c36da58c7c33f88d206e9cb6383b75929b02fc313bd8df11b39a9 -size 1879 +oid sha256:9e17095aee7ac2066b4977511fc660f3aa77820ce73e3ae53a3fddd9c0540d94 +size 1878 diff --git a/data/minecraft/structure/village/savanna/zombie/houses/savanna_small_house_2.nbt b/data/minecraft/structure/village/savanna/zombie/houses/savanna_small_house_2.nbt index f59d57e4..ab8d7316 100644 --- a/data/minecraft/structure/village/savanna/zombie/houses/savanna_small_house_2.nbt +++ b/data/minecraft/structure/village/savanna/zombie/houses/savanna_small_house_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ab6e647942af1377c2acd864669832b628f3faa64055edd07687dcf827472a09 +oid sha256:8938b6d41715b337d8d7e939af0eede181b93357865167471d3100bd9f58d476 size 1875 diff --git a/data/minecraft/structure/village/savanna/zombie/houses/savanna_small_house_3.nbt b/data/minecraft/structure/village/savanna/zombie/houses/savanna_small_house_3.nbt index bffcf545..713ce260 100644 --- a/data/minecraft/structure/village/savanna/zombie/houses/savanna_small_house_3.nbt +++ b/data/minecraft/structure/village/savanna/zombie/houses/savanna_small_house_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8e7fca06b6f60fa90c69ad80d16f55f453a236ddcf7285756716bfef26052538 -size 1828 +oid sha256:23859d6cc921e9da60325b559cde77998e75101d8b991e9406fbbb1e648e5879 +size 1827 diff --git a/data/minecraft/structure/village/savanna/zombie/houses/savanna_small_house_4.nbt b/data/minecraft/structure/village/savanna/zombie/houses/savanna_small_house_4.nbt index 8c8bbff3..29b5e297 100644 --- a/data/minecraft/structure/village/savanna/zombie/houses/savanna_small_house_4.nbt +++ b/data/minecraft/structure/village/savanna/zombie/houses/savanna_small_house_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8c5d09e55982949a10548ea1ba6cd69eea6720bcfc8c9b888e233264361ba4ac -size 2708 +oid sha256:26f680dea5abdb24d882eacc88b59f33cc5a9695efde482e4145157ab9c4fd9c +size 2707 diff --git a/data/minecraft/structure/village/savanna/zombie/houses/savanna_small_house_5.nbt b/data/minecraft/structure/village/savanna/zombie/houses/savanna_small_house_5.nbt index f4b2644c..cf2dba2e 100644 --- a/data/minecraft/structure/village/savanna/zombie/houses/savanna_small_house_5.nbt +++ b/data/minecraft/structure/village/savanna/zombie/houses/savanna_small_house_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:58f15600f871ff930d1b24dae4b9f10fd5ac14f6ce65868b6b20ae346dd5576b -size 2394 +oid sha256:68df07cbaeef86018ef75c1eab4983c589ef8528611d6b423af5fbeef4b4d608 +size 2393 diff --git a/data/minecraft/structure/village/savanna/zombie/houses/savanna_small_house_6.nbt b/data/minecraft/structure/village/savanna/zombie/houses/savanna_small_house_6.nbt index e53ee32a..a567e2c3 100644 --- a/data/minecraft/structure/village/savanna/zombie/houses/savanna_small_house_6.nbt +++ b/data/minecraft/structure/village/savanna/zombie/houses/savanna_small_house_6.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e4308d7b5a37da4ade97d82e0aa28ef7e04a62685ba80fe82b8d04adb0643f5c -size 1792 +oid sha256:d60c8cb0d631b352953acf7df4ad5acb16c9f2f270adacfe86f3f24e2322e085 +size 1790 diff --git a/data/minecraft/structure/village/savanna/zombie/houses/savanna_small_house_7.nbt b/data/minecraft/structure/village/savanna/zombie/houses/savanna_small_house_7.nbt index 8fd3aaf7..0081ac71 100644 --- a/data/minecraft/structure/village/savanna/zombie/houses/savanna_small_house_7.nbt +++ b/data/minecraft/structure/village/savanna/zombie/houses/savanna_small_house_7.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:92f860ddcb2a60d91747be60f4ff6a5eba18f295182346f872dee88996ff6516 +oid sha256:48b577b7d382c92adf0eec7578848be75668e1ddff58d50fe6093d3a82b3933d size 1907 diff --git a/data/minecraft/structure/village/savanna/zombie/houses/savanna_small_house_8.nbt b/data/minecraft/structure/village/savanna/zombie/houses/savanna_small_house_8.nbt index a1a96ff8..7e802a26 100644 --- a/data/minecraft/structure/village/savanna/zombie/houses/savanna_small_house_8.nbt +++ b/data/minecraft/structure/village/savanna/zombie/houses/savanna_small_house_8.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a25fcba815ad51c8af615e5b12e1ec64c35e711081f4323afcb0a59e06be8f5f -size 1551 +oid sha256:842faac025fe0da53d485ccb21b35ae67b4a526985eb8027f0e3f788c3a04823 +size 1549 diff --git a/data/minecraft/structure/village/savanna/zombie/streets/corner_01.nbt b/data/minecraft/structure/village/savanna/zombie/streets/corner_01.nbt index c8c7abef..265db094 100644 --- a/data/minecraft/structure/village/savanna/zombie/streets/corner_01.nbt +++ b/data/minecraft/structure/village/savanna/zombie/streets/corner_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7cdb95097c13dd1dcf4b3d8c2019b2903da5510ec45bf81dbc7397e786f3e670 -size 1203 +oid sha256:30a75a0ce2ac52e86e367a235ad34eed1630942fc9f00c52dfc81d5a018ee134 +size 1202 diff --git a/data/minecraft/structure/village/savanna/zombie/streets/corner_03.nbt b/data/minecraft/structure/village/savanna/zombie/streets/corner_03.nbt index 4d612c43..c0ad1514 100644 --- a/data/minecraft/structure/village/savanna/zombie/streets/corner_03.nbt +++ b/data/minecraft/structure/village/savanna/zombie/streets/corner_03.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5a9624f9e71fc6945257bcb790ad75069976be0c859d41f9c32bb1e5f725ad82 -size 357 +oid sha256:863c989827ab9d3caea130fecd4670f37b39c34b52ee9fc3dc5c83ee2718db00 +size 356 diff --git a/data/minecraft/structure/village/savanna/zombie/streets/crossroad_02.nbt b/data/minecraft/structure/village/savanna/zombie/streets/crossroad_02.nbt index 8cc350b4..6cf5a483 100644 --- a/data/minecraft/structure/village/savanna/zombie/streets/crossroad_02.nbt +++ b/data/minecraft/structure/village/savanna/zombie/streets/crossroad_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d1c7a121c7b7dc5f7a8d6a0c72b38e2adce8c0f62e4bc3dec5b495217208f250 -size 631 +oid sha256:62da8ec5f4687801be883b0fc6e3418644b40161db9b2182fa5e665ca5f77f14 +size 630 diff --git a/data/minecraft/structure/village/savanna/zombie/streets/crossroad_03.nbt b/data/minecraft/structure/village/savanna/zombie/streets/crossroad_03.nbt index 238f0063..3a911444 100644 --- a/data/minecraft/structure/village/savanna/zombie/streets/crossroad_03.nbt +++ b/data/minecraft/structure/village/savanna/zombie/streets/crossroad_03.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fb34d1d3a35e8bc519f41d639b371aae4168e13bbe355d046998ca7be627c0fe +oid sha256:f4c918c8411982e998f0027a194d081cfa20e6acc583fd7b179edb8e32588a6d size 1229 diff --git a/data/minecraft/structure/village/savanna/zombie/streets/crossroad_04.nbt b/data/minecraft/structure/village/savanna/zombie/streets/crossroad_04.nbt index 650b68de..9baff277 100644 --- a/data/minecraft/structure/village/savanna/zombie/streets/crossroad_04.nbt +++ b/data/minecraft/structure/village/savanna/zombie/streets/crossroad_04.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:40fdc20d5db5676fb9c9f299b5ade2c29eb29fa116a91cf70a72964fb8f59859 +oid sha256:f699da0e54a0f9de1c360e565e2e20f3e108b02628139339dc74693d5ae5878d size 383 diff --git a/data/minecraft/structure/village/savanna/zombie/streets/crossroad_05.nbt b/data/minecraft/structure/village/savanna/zombie/streets/crossroad_05.nbt index bbce4e9e..cd45701f 100644 --- a/data/minecraft/structure/village/savanna/zombie/streets/crossroad_05.nbt +++ b/data/minecraft/structure/village/savanna/zombie/streets/crossroad_05.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a0b9538261f9b70621c04f5677393df5d1f8380a7b1d7fc036fc094bad19c8ac -size 415 +oid sha256:ae154104ede8ac63d588953d895eb73b92cad22b4cc6d0ac7e8d248b6130d782 +size 414 diff --git a/data/minecraft/structure/village/savanna/zombie/streets/crossroad_06.nbt b/data/minecraft/structure/village/savanna/zombie/streets/crossroad_06.nbt index c9a9f82f..9bafb2d5 100644 --- a/data/minecraft/structure/village/savanna/zombie/streets/crossroad_06.nbt +++ b/data/minecraft/structure/village/savanna/zombie/streets/crossroad_06.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ede0eafe2042dbc9dae765c28a80d520bd0a067a68f117b15c7f8a09156c0974 -size 472 +oid sha256:e0861a0d81af63b4051149359a6e98ae55013b9de71196068f06c6aeaab7a15e +size 471 diff --git a/data/minecraft/structure/village/savanna/zombie/streets/crossroad_07.nbt b/data/minecraft/structure/village/savanna/zombie/streets/crossroad_07.nbt index b0236587..c0b67a1d 100644 --- a/data/minecraft/structure/village/savanna/zombie/streets/crossroad_07.nbt +++ b/data/minecraft/structure/village/savanna/zombie/streets/crossroad_07.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:97f7ec4f1e3557bd3ea10c1c019a1e631a9b85cd6bbb83ec4db57463371f39cf -size 1385 +oid sha256:33b106077e849108350273dc6aa780fe7808d7e3fbad7fac862f597b68abb44d +size 1384 diff --git a/data/minecraft/structure/village/savanna/zombie/streets/split_01.nbt b/data/minecraft/structure/village/savanna/zombie/streets/split_01.nbt index 51ca8369..5a3e134b 100644 --- a/data/minecraft/structure/village/savanna/zombie/streets/split_01.nbt +++ b/data/minecraft/structure/village/savanna/zombie/streets/split_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:172ccb6f4898c907134754a512efaf61cf14e217da0d4eb6e86410be443d414b -size 529 +oid sha256:b3c425a45954b58870a50801866270c1072a44e1a342e066bdadaced3d585aa4 +size 528 diff --git a/data/minecraft/structure/village/savanna/zombie/streets/split_02.nbt b/data/minecraft/structure/village/savanna/zombie/streets/split_02.nbt index da15e4f2..89bf7257 100644 --- a/data/minecraft/structure/village/savanna/zombie/streets/split_02.nbt +++ b/data/minecraft/structure/village/savanna/zombie/streets/split_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:96a1d7c9c88423d613e252d927a95baa201250bf524211a144a3b8a76b639214 -size 743 +oid sha256:c439ca6fd241255d0c97ddbc0396fb682dc71fc9bd482514faa1cc117b45c1c9 +size 742 diff --git a/data/minecraft/structure/village/savanna/zombie/streets/straight_02.nbt b/data/minecraft/structure/village/savanna/zombie/streets/straight_02.nbt index 3d46eb7a..4aada8f5 100644 --- a/data/minecraft/structure/village/savanna/zombie/streets/straight_02.nbt +++ b/data/minecraft/structure/village/savanna/zombie/streets/straight_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6e13b3220c08869b3f0b9f6aaa62ffcbec9ffd12c701e46c26c7eaed19adf6ed -size 1130 +oid sha256:b210e96189d04005dc64761286efbacf7613d678b3b29db86ce2b5c11b2f6f56 +size 1129 diff --git a/data/minecraft/structure/village/savanna/zombie/streets/straight_04.nbt b/data/minecraft/structure/village/savanna/zombie/streets/straight_04.nbt index 7cb0ab69..8761cc8e 100644 --- a/data/minecraft/structure/village/savanna/zombie/streets/straight_04.nbt +++ b/data/minecraft/structure/village/savanna/zombie/streets/straight_04.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7d435778af8d010470e05b14ca67d95ebd52dff7ec9c337db45a8feb417e6ea1 -size 646 +oid sha256:9f58f1cd6e63f99d6a12a12157cd7f5f4d5e9f80c6a82731631d834fd89976d4 +size 644 diff --git a/data/minecraft/structure/village/savanna/zombie/streets/straight_05.nbt b/data/minecraft/structure/village/savanna/zombie/streets/straight_05.nbt index c430e9c2..04a688c9 100644 --- a/data/minecraft/structure/village/savanna/zombie/streets/straight_05.nbt +++ b/data/minecraft/structure/village/savanna/zombie/streets/straight_05.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b7a2d5ec32ea3f99659993d8ee9dd844ba547cefce9fa64786a82432bdeb4dbe -size 1936 +oid sha256:f8f66f17d991f70dfdb269134c7d0133e7e773d250650cb677aacaed749be2d3 +size 1935 diff --git a/data/minecraft/structure/village/savanna/zombie/streets/straight_06.nbt b/data/minecraft/structure/village/savanna/zombie/streets/straight_06.nbt index 89217c55..93772976 100644 --- a/data/minecraft/structure/village/savanna/zombie/streets/straight_06.nbt +++ b/data/minecraft/structure/village/savanna/zombie/streets/straight_06.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:68298e62d1f280a126b71914248d0a2c499d878b2636c08c78fbadea4423329e -size 1092 +oid sha256:003db0c7b3ba7a9ca2fc90d95191d8392df2161e62c8a965d5f8deb7f1ecd8f9 +size 1091 diff --git a/data/minecraft/structure/village/savanna/zombie/streets/straight_08.nbt b/data/minecraft/structure/village/savanna/zombie/streets/straight_08.nbt index ff0ff845..053bd5c2 100644 --- a/data/minecraft/structure/village/savanna/zombie/streets/straight_08.nbt +++ b/data/minecraft/structure/village/savanna/zombie/streets/straight_08.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:24cecca3b96fb0c1600eafdd1d21818f5067f1ded17c727622fd4d8e412092de -size 944 +oid sha256:0730cae5d2c10cb4a1137f71644fcb0322766bc9670b3e45dda7bf0e290a9b9b +size 943 diff --git a/data/minecraft/structure/village/savanna/zombie/streets/straight_09.nbt b/data/minecraft/structure/village/savanna/zombie/streets/straight_09.nbt index 36ec7b7a..7506c192 100644 --- a/data/minecraft/structure/village/savanna/zombie/streets/straight_09.nbt +++ b/data/minecraft/structure/village/savanna/zombie/streets/straight_09.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ae74958dc53ba8e22eea0a959736ee49fbaddf5d1f0ef9f7590a10fc744f89f4 +oid sha256:069d0d58277f273ae2b66c62637973fca4907812349c49a62be44d41919c05c0 size 1526 diff --git a/data/minecraft/structure/village/savanna/zombie/streets/straight_10.nbt b/data/minecraft/structure/village/savanna/zombie/streets/straight_10.nbt index 9d822286..2de4a7e9 100644 --- a/data/minecraft/structure/village/savanna/zombie/streets/straight_10.nbt +++ b/data/minecraft/structure/village/savanna/zombie/streets/straight_10.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:88cf353c6c58074a674a45e956bc2a1b7479ce7df3b2d6e3c9ce6d08da8fe222 -size 529 +oid sha256:2a318bee3b94645231f5a635b20579cad12c95e4342916a686b3b7aa1df24868 +size 528 diff --git a/data/minecraft/structure/village/savanna/zombie/streets/straight_11.nbt b/data/minecraft/structure/village/savanna/zombie/streets/straight_11.nbt index d9fc6801..a2c4ba4d 100644 --- a/data/minecraft/structure/village/savanna/zombie/streets/straight_11.nbt +++ b/data/minecraft/structure/village/savanna/zombie/streets/straight_11.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:24f102740cacb7e5a8fdfc82cb6b6ec529bc8bcf06c9dc19a5863ba70f515719 -size 1567 +oid sha256:91ea962333a07a6f7b0befb8b025b615de5045ef141748b6c430df7589579958 +size 1566 diff --git a/data/minecraft/structure/village/savanna/zombie/streets/turn_01.nbt b/data/minecraft/structure/village/savanna/zombie/streets/turn_01.nbt index 6814b42c..36a915ce 100644 --- a/data/minecraft/structure/village/savanna/zombie/streets/turn_01.nbt +++ b/data/minecraft/structure/village/savanna/zombie/streets/turn_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:94bb6e74d51904f0159cce4d2ecbc279e59646aab921207d24fccc8d156a4cd0 -size 1165 +oid sha256:0a8ce91d4947a63123cc70f2699c4ba7d75156ac9b3790fe3a657ae1688aee41 +size 1164 diff --git a/data/minecraft/structure/village/savanna/zombie/terminators/terminator_05.nbt b/data/minecraft/structure/village/savanna/zombie/terminators/terminator_05.nbt index 797b3fa6..073ea264 100644 --- a/data/minecraft/structure/village/savanna/zombie/terminators/terminator_05.nbt +++ b/data/minecraft/structure/village/savanna/zombie/terminators/terminator_05.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fc277f2acc8876edbcb87081b467e901ea201567e926f8ae3ca64fcb58fa7e7e +oid sha256:989d38a5771beaa4f6540ed6d47fdd7ec3fef610e8aafbbeab73321ebe9d6d52 size 1192 diff --git a/data/minecraft/structure/village/savanna/zombie/town_centers/savanna_meeting_point_1.nbt b/data/minecraft/structure/village/savanna/zombie/town_centers/savanna_meeting_point_1.nbt index 58e86935..23f4d837 100644 --- a/data/minecraft/structure/village/savanna/zombie/town_centers/savanna_meeting_point_1.nbt +++ b/data/minecraft/structure/village/savanna/zombie/town_centers/savanna_meeting_point_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f8ce4d77c7bb97a13e78fe32973776ad0db87349333782c3ad794a5aedce1c10 -size 3183 +oid sha256:cdac0f6a8be112e2287ec275372b73060000904cc153e643c4f2f89f200346e9 +size 3182 diff --git a/data/minecraft/structure/village/savanna/zombie/town_centers/savanna_meeting_point_2.nbt b/data/minecraft/structure/village/savanna/zombie/town_centers/savanna_meeting_point_2.nbt index cdfe66ea..8a3c7b41 100644 --- a/data/minecraft/structure/village/savanna/zombie/town_centers/savanna_meeting_point_2.nbt +++ b/data/minecraft/structure/village/savanna/zombie/town_centers/savanna_meeting_point_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3d279a5d69a032b7748e330356fa8f08eea9b157895fd5ea14de833ed284dea8 -size 2712 +oid sha256:bd7d619bbccd5f6c76b729fa2781ab62c8979b95b2a1bf44f0317f33542e775f +size 2711 diff --git a/data/minecraft/structure/village/savanna/zombie/town_centers/savanna_meeting_point_3.nbt b/data/minecraft/structure/village/savanna/zombie/town_centers/savanna_meeting_point_3.nbt index 8bd5ea2d..9f317bda 100644 --- a/data/minecraft/structure/village/savanna/zombie/town_centers/savanna_meeting_point_3.nbt +++ b/data/minecraft/structure/village/savanna/zombie/town_centers/savanna_meeting_point_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e64e1cc9d0817cbeb1f722cf09e2de9ab44496e96ec7b203ef5a80a73cd8e8f0 +oid sha256:a88c33fd3ad1353290e5d40508c4719a5a72ac1a9a4f0a2c1533acb375ed7b9b size 917 diff --git a/data/minecraft/structure/village/savanna/zombie/town_centers/savanna_meeting_point_4.nbt b/data/minecraft/structure/village/savanna/zombie/town_centers/savanna_meeting_point_4.nbt index 7993860e..75c53aea 100644 --- a/data/minecraft/structure/village/savanna/zombie/town_centers/savanna_meeting_point_4.nbt +++ b/data/minecraft/structure/village/savanna/zombie/town_centers/savanna_meeting_point_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2d1a25e1e09c5f6339a21c3b892733546ee38eb5f8de32caf738aa785536dc2c -size 1145 +oid sha256:0d1e09d07015c9497c339ef5411b7c28ac7d8d5d0546f249a21d2537c7b8e3eb +size 1143 diff --git a/data/minecraft/structure/village/savanna/zombie/villagers/nitwit.nbt b/data/minecraft/structure/village/savanna/zombie/villagers/nitwit.nbt index 2508d564..49f74b24 100644 --- a/data/minecraft/structure/village/savanna/zombie/villagers/nitwit.nbt +++ b/data/minecraft/structure/village/savanna/zombie/villagers/nitwit.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c821ed4de846aca1358c38f98131da3066eee2a4e4ee9d610a560214ccfc4aa2 -size 723 +oid sha256:28dd4c011562a51f45a89a8f3bb3144e10c70a6424914345bf59f21f8a471b9f +size 724 diff --git a/data/minecraft/structure/village/savanna/zombie/villagers/unemployed.nbt b/data/minecraft/structure/village/savanna/zombie/villagers/unemployed.nbt index aa5e5deb..5ececb5f 100644 --- a/data/minecraft/structure/village/savanna/zombie/villagers/unemployed.nbt +++ b/data/minecraft/structure/village/savanna/zombie/villagers/unemployed.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2333ec32e70b10de92b1b81e08d43c2ea3a9765441a5c8d25ca3d89dcc17c217 +oid sha256:b0fdbb642edc01655b94e2dd3f80a6585b01ab34d18fc3061bd64568e1e74425 size 722 diff --git a/data/minecraft/structure/village/snowy/houses/snowy_animal_pen_1.nbt b/data/minecraft/structure/village/snowy/houses/snowy_animal_pen_1.nbt index f26ef9ca..9e793c67 100644 --- a/data/minecraft/structure/village/snowy/houses/snowy_animal_pen_1.nbt +++ b/data/minecraft/structure/village/snowy/houses/snowy_animal_pen_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a6a29488fea4d94346e64deda9515d1f7041ae1984ab5b8ec3c9caf6aefd164f -size 1620 +oid sha256:dbb5094cf17635211a738d40dd1530d5805f8f6b568b121231fe816b7d381f95 +size 1619 diff --git a/data/minecraft/structure/village/snowy/houses/snowy_animal_pen_2.nbt b/data/minecraft/structure/village/snowy/houses/snowy_animal_pen_2.nbt index 79a19963..398aba13 100644 --- a/data/minecraft/structure/village/snowy/houses/snowy_animal_pen_2.nbt +++ b/data/minecraft/structure/village/snowy/houses/snowy_animal_pen_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c9c5ef0754bb822977c9d8eb088d883b70846cffa3da763489027c17ca271f09 +oid sha256:0901dd7e67ce6127655506ecb99c72a303cb90b52947d86ebd624d2ce757a45a size 1260 diff --git a/data/minecraft/structure/village/snowy/houses/snowy_armorer_house_1.nbt b/data/minecraft/structure/village/snowy/houses/snowy_armorer_house_1.nbt index 7e28b931..4aa19ccd 100644 --- a/data/minecraft/structure/village/snowy/houses/snowy_armorer_house_1.nbt +++ b/data/minecraft/structure/village/snowy/houses/snowy_armorer_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:db9ecc79fb13a96732b134476aa6c7a19ee7c7dfccd12cb9284d52ea37f75ca8 -size 2191 +oid sha256:e645f1475da2ead461a69f1870c185bfd33185d0b84d05ff0426bca8936e1e3f +size 2190 diff --git a/data/minecraft/structure/village/snowy/houses/snowy_armorer_house_2.nbt b/data/minecraft/structure/village/snowy/houses/snowy_armorer_house_2.nbt index 1c0876a1..9ff43d74 100644 --- a/data/minecraft/structure/village/snowy/houses/snowy_armorer_house_2.nbt +++ b/data/minecraft/structure/village/snowy/houses/snowy_armorer_house_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b4ba838597dd6fa211fbe8dc27445edf81957c667392a30eb48bba4e7b7091ba -size 2069 +oid sha256:bddcd2a0060293496b323b4a049b4bcc4abcd4c8b112d953a0a1814e85414578 +size 2068 diff --git a/data/minecraft/structure/village/snowy/houses/snowy_butchers_shop_1.nbt b/data/minecraft/structure/village/snowy/houses/snowy_butchers_shop_1.nbt index 42a80e33..0a63f16b 100644 --- a/data/minecraft/structure/village/snowy/houses/snowy_butchers_shop_1.nbt +++ b/data/minecraft/structure/village/snowy/houses/snowy_butchers_shop_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3c0035a9b4663c6540c231939d18fddba85d8b6c0dea6461f48d8874d724956f +oid sha256:a8e7ea6e9eafa8e229752b26ed83e31224f0b1287645569fa2cdc85883151d0e size 2566 diff --git a/data/minecraft/structure/village/snowy/houses/snowy_butchers_shop_2.nbt b/data/minecraft/structure/village/snowy/houses/snowy_butchers_shop_2.nbt index 4d4ef339..a63715ea 100644 --- a/data/minecraft/structure/village/snowy/houses/snowy_butchers_shop_2.nbt +++ b/data/minecraft/structure/village/snowy/houses/snowy_butchers_shop_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:89bd33da9f0a73211c78090aff908bac9f8f6543a339056c88c6f1aee54462b0 -size 1463 +oid sha256:fa958690fadfbb4a10fa36945129fbf83785ddaa1ff5f25b66f26710f72cf08f +size 1462 diff --git a/data/minecraft/structure/village/snowy/houses/snowy_cartographer_house_1.nbt b/data/minecraft/structure/village/snowy/houses/snowy_cartographer_house_1.nbt index a1c69981..7b2bc199 100644 --- a/data/minecraft/structure/village/snowy/houses/snowy_cartographer_house_1.nbt +++ b/data/minecraft/structure/village/snowy/houses/snowy_cartographer_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:061aaffa21d6c31bc0000f68b4139abb68e6f24319e1f9e5574fafce64cab8e3 -size 2361 +oid sha256:57d78d1eb35699aaabdb36cb50d109b0bed8d4d382893341ba28a662851b7a73 +size 2359 diff --git a/data/minecraft/structure/village/snowy/houses/snowy_farm_1.nbt b/data/minecraft/structure/village/snowy/houses/snowy_farm_1.nbt index 48c578b0..a24d540a 100644 --- a/data/minecraft/structure/village/snowy/houses/snowy_farm_1.nbt +++ b/data/minecraft/structure/village/snowy/houses/snowy_farm_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d0165a58848141564343b53cc7b39e6e61a6ffd1df72d0156b2672bdb3562e90 -size 1253 +oid sha256:850bfd106c52ebb498e5a37acb3d3b9cf551b465d2140a615ab5c08a25716872 +size 1252 diff --git a/data/minecraft/structure/village/snowy/houses/snowy_farm_2.nbt b/data/minecraft/structure/village/snowy/houses/snowy_farm_2.nbt index 294fdcd4..7dc3c171 100644 --- a/data/minecraft/structure/village/snowy/houses/snowy_farm_2.nbt +++ b/data/minecraft/structure/village/snowy/houses/snowy_farm_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:117ddb9d6aebb57e0a0b03bc5a897c17fdab51ec5b1977626c5137185330ba05 -size 1075 +oid sha256:eb575174a2f712cfc423a9bf2c35696a8ce638b13f035a03406e5e19de11f92c +size 1073 diff --git a/data/minecraft/structure/village/snowy/houses/snowy_fisher_cottage.nbt b/data/minecraft/structure/village/snowy/houses/snowy_fisher_cottage.nbt index 04d5ba3b..5d3b66e0 100644 --- a/data/minecraft/structure/village/snowy/houses/snowy_fisher_cottage.nbt +++ b/data/minecraft/structure/village/snowy/houses/snowy_fisher_cottage.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2efeeede81e3558daecda3edd2900079df0bfd2750acbfdc0561ff75541593b1 -size 2236 +oid sha256:755759d189125e47b5571eeaf5c8c3b82bef3d7c6bec1644cbb23d48f7b7f608 +size 2234 diff --git a/data/minecraft/structure/village/snowy/houses/snowy_fletcher_house_1.nbt b/data/minecraft/structure/village/snowy/houses/snowy_fletcher_house_1.nbt index 7a198e75..05b9a7aa 100644 --- a/data/minecraft/structure/village/snowy/houses/snowy_fletcher_house_1.nbt +++ b/data/minecraft/structure/village/snowy/houses/snowy_fletcher_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d3e84aa14d83390f477e4cb4254287902a2eb3e1c40fff907895c62daadb19ec +oid sha256:731c383e1ffa486781a8d298410eacfb6c70d915b3077006c3af2dcf39433f6a size 2120 diff --git a/data/minecraft/structure/village/snowy/houses/snowy_library_1.nbt b/data/minecraft/structure/village/snowy/houses/snowy_library_1.nbt index fc3fb1ae..a710abf5 100644 --- a/data/minecraft/structure/village/snowy/houses/snowy_library_1.nbt +++ b/data/minecraft/structure/village/snowy/houses/snowy_library_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b79735491ae36ac91d10a2a3bfc36f7a048901dd081fbbfb515fe9382bedbbcb -size 3446 +oid sha256:d729dba692553b8e75ff888e434140d78ec4e683c54eb2595b0e0b38703f7dda +size 3445 diff --git a/data/minecraft/structure/village/snowy/houses/snowy_masons_house_1.nbt b/data/minecraft/structure/village/snowy/houses/snowy_masons_house_1.nbt index c7b1373c..c0639427 100644 --- a/data/minecraft/structure/village/snowy/houses/snowy_masons_house_1.nbt +++ b/data/minecraft/structure/village/snowy/houses/snowy_masons_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3b7d0436a828851f25e08f3e2773de18db18b63cf4003539cdc936e4ad4126bc +oid sha256:d77fb47de944fe704748026282b155d106279e3c4a45541244271a4064f4fb52 size 2997 diff --git a/data/minecraft/structure/village/snowy/houses/snowy_masons_house_2.nbt b/data/minecraft/structure/village/snowy/houses/snowy_masons_house_2.nbt index 901a91cf..f23841c0 100644 --- a/data/minecraft/structure/village/snowy/houses/snowy_masons_house_2.nbt +++ b/data/minecraft/structure/village/snowy/houses/snowy_masons_house_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e7a16a8ab1c7975249c1ffffe918b447e97f4dd7e80dde849fd3b5d5fa6c2515 -size 3184 +oid sha256:140db0bd1c03c2d8e7368f361a62651fa5b595db3912ef7b0fa09f6595af2375 +size 3183 diff --git a/data/minecraft/structure/village/snowy/houses/snowy_medium_house_1.nbt b/data/minecraft/structure/village/snowy/houses/snowy_medium_house_1.nbt index 41a67b5b..afa1be68 100644 --- a/data/minecraft/structure/village/snowy/houses/snowy_medium_house_1.nbt +++ b/data/minecraft/structure/village/snowy/houses/snowy_medium_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f776d5c155b09831e034afd07c94e763c6570ea7df6534122d4eab1893e860f6 -size 1593 +oid sha256:f09214db4e1234e78c0d7d047b66fe47392f926ecbd8041bbd3675e7399c60e4 +size 1592 diff --git a/data/minecraft/structure/village/snowy/houses/snowy_medium_house_2.nbt b/data/minecraft/structure/village/snowy/houses/snowy_medium_house_2.nbt index efa24c59..c06454d1 100644 --- a/data/minecraft/structure/village/snowy/houses/snowy_medium_house_2.nbt +++ b/data/minecraft/structure/village/snowy/houses/snowy_medium_house_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:767cda57e23171444e78ab4afb037c41525c3ea02a76b52fab7b7af878d787d8 -size 3531 +oid sha256:f5b8131c6670724f9684a0960a919859c6ca82272e3cdfa237b2b63dc0b9e6d7 +size 3530 diff --git a/data/minecraft/structure/village/snowy/houses/snowy_medium_house_3.nbt b/data/minecraft/structure/village/snowy/houses/snowy_medium_house_3.nbt index 26ddb760..bec61b9d 100644 --- a/data/minecraft/structure/village/snowy/houses/snowy_medium_house_3.nbt +++ b/data/minecraft/structure/village/snowy/houses/snowy_medium_house_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:657d93553062a4fca4ba64908f3ddb09b3a6e8cb65b481939579d98765d212f4 -size 1205 +oid sha256:f771ca6887751dee50f28d8bd1a9b2ac63b506b28d052755ee0710ce42a0e09e +size 1204 diff --git a/data/minecraft/structure/village/snowy/houses/snowy_shepherds_house_1.nbt b/data/minecraft/structure/village/snowy/houses/snowy_shepherds_house_1.nbt index 340df146..d9ccb412 100644 --- a/data/minecraft/structure/village/snowy/houses/snowy_shepherds_house_1.nbt +++ b/data/minecraft/structure/village/snowy/houses/snowy_shepherds_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f3058c12710372e2358bc783261ff73901f0f52602c4ab78aac297994cbef163 -size 2166 +oid sha256:3d672af83e5db2b6bfa1273cb751d9134061c635a10e15050979396e9143ebc3 +size 2165 diff --git a/data/minecraft/structure/village/snowy/houses/snowy_small_house_1.nbt b/data/minecraft/structure/village/snowy/houses/snowy_small_house_1.nbt index 81385de7..f3e55a38 100644 --- a/data/minecraft/structure/village/snowy/houses/snowy_small_house_1.nbt +++ b/data/minecraft/structure/village/snowy/houses/snowy_small_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b9ef521b0b8b0882720a6b758196c4c4a53148ec95eed01f04bca69222595dd6 -size 1316 +oid sha256:2241ebbacfdeeea67db466906f0bcb7763e96e6b0db0c2663694c0583eb31e25 +size 1315 diff --git a/data/minecraft/structure/village/snowy/houses/snowy_small_house_2.nbt b/data/minecraft/structure/village/snowy/houses/snowy_small_house_2.nbt index 07a31674..509d25d3 100644 --- a/data/minecraft/structure/village/snowy/houses/snowy_small_house_2.nbt +++ b/data/minecraft/structure/village/snowy/houses/snowy_small_house_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e25e15c932e2b5da07ae8dfa20d3d2272cf91d32808a64c9d97520a200c9ebea -size 2121 +oid sha256:e97236f6c90d11b30ab83890011eb6f8464d10960edf830897ae8e7466849c8a +size 2120 diff --git a/data/minecraft/structure/village/snowy/houses/snowy_small_house_3.nbt b/data/minecraft/structure/village/snowy/houses/snowy_small_house_3.nbt index ea6198d4..578e32fd 100644 --- a/data/minecraft/structure/village/snowy/houses/snowy_small_house_3.nbt +++ b/data/minecraft/structure/village/snowy/houses/snowy_small_house_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:386dc94e5ede9ecfad2803b4847ce6a5211cf68eca32e64a3d962f7cfd82d371 -size 1755 +oid sha256:3842677507c1d07c68a8249e02403f6cf52b3e3a6b27e30d3a6db76b74364eed +size 1754 diff --git a/data/minecraft/structure/village/snowy/houses/snowy_small_house_4.nbt b/data/minecraft/structure/village/snowy/houses/snowy_small_house_4.nbt index 3e22e535..22fe0203 100644 --- a/data/minecraft/structure/village/snowy/houses/snowy_small_house_4.nbt +++ b/data/minecraft/structure/village/snowy/houses/snowy_small_house_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ce4befcb377da38f0217b070dd439c46d22cbeae6aff83cb16c3f30666b4d14d -size 1601 +oid sha256:d7412f5d39cccdd927a30f92abed07c7a4c7f9b691e34e5959f9f0c0edfcae1a +size 1600 diff --git a/data/minecraft/structure/village/snowy/houses/snowy_small_house_5.nbt b/data/minecraft/structure/village/snowy/houses/snowy_small_house_5.nbt index e4ffbc91..0f864938 100644 --- a/data/minecraft/structure/village/snowy/houses/snowy_small_house_5.nbt +++ b/data/minecraft/structure/village/snowy/houses/snowy_small_house_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5b774e4d009eb99ffa29f164101d1f571817a951f6a7498e4de9475d8fc12851 -size 1140 +oid sha256:e72b3c4f023e2560d7d4ce5f76b4fc18651d855e9b01f83a971361fb8c5a3582 +size 1139 diff --git a/data/minecraft/structure/village/snowy/houses/snowy_small_house_6.nbt b/data/minecraft/structure/village/snowy/houses/snowy_small_house_6.nbt index 3345693e..f78bc1c1 100644 --- a/data/minecraft/structure/village/snowy/houses/snowy_small_house_6.nbt +++ b/data/minecraft/structure/village/snowy/houses/snowy_small_house_6.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ef0039cd80cc9d4f6df830ae48f8e7b987fc0576f77d1a738696587230cbc272 -size 2214 +oid sha256:e71a0fefe1801b1733ddf63a3959447841d1297d7f08518bbec53c27707c03b0 +size 2213 diff --git a/data/minecraft/structure/village/snowy/houses/snowy_small_house_7.nbt b/data/minecraft/structure/village/snowy/houses/snowy_small_house_7.nbt index 61823517..da5b3924 100644 --- a/data/minecraft/structure/village/snowy/houses/snowy_small_house_7.nbt +++ b/data/minecraft/structure/village/snowy/houses/snowy_small_house_7.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6197bb1aeb2b9fce9f9fb054d2a1fe397dc8f1b9969ebf4f770f3d8509a55c1d +oid sha256:aabfa3e70dff1e5b11ba8a5dac55a852c53b1b10802fa0949e4b4f1470d20d23 size 1617 diff --git a/data/minecraft/structure/village/snowy/houses/snowy_small_house_8.nbt b/data/minecraft/structure/village/snowy/houses/snowy_small_house_8.nbt index 77a9efcc..ae03d848 100644 --- a/data/minecraft/structure/village/snowy/houses/snowy_small_house_8.nbt +++ b/data/minecraft/structure/village/snowy/houses/snowy_small_house_8.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bc7395e943d16ab7d6a3911346e20fd8470d6cdfbecbac7712f53e19da13dec5 -size 1020 +oid sha256:967de77ffb1dd753ef800f8ef2907ca643c0ca8884f6c60e63e8c230edc1fe25 +size 1019 diff --git a/data/minecraft/structure/village/snowy/houses/snowy_tannery_1.nbt b/data/minecraft/structure/village/snowy/houses/snowy_tannery_1.nbt index 0c966dde..bb6a3f89 100644 --- a/data/minecraft/structure/village/snowy/houses/snowy_tannery_1.nbt +++ b/data/minecraft/structure/village/snowy/houses/snowy_tannery_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6b90da6ce559af84486a05546aca6febd92fc0a9853a09a5ef8b902f0405df63 +oid sha256:ea7d0862350b52325edfd233fe6540e18b679459312d62faf68f70518f1b2b49 size 2973 diff --git a/data/minecraft/structure/village/snowy/houses/snowy_temple_1.nbt b/data/minecraft/structure/village/snowy/houses/snowy_temple_1.nbt index b4a324fa..73dac343 100644 --- a/data/minecraft/structure/village/snowy/houses/snowy_temple_1.nbt +++ b/data/minecraft/structure/village/snowy/houses/snowy_temple_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:75e30025086e570bd519eab13959ba3c09bc3a0d457646cc5e537e9270a8248b +oid sha256:72ebf621222c80c328b9109222146c23a5f6e8a813d74f142ceef6fb86ea2fb1 size 3573 diff --git a/data/minecraft/structure/village/snowy/houses/snowy_tool_smith_1.nbt b/data/minecraft/structure/village/snowy/houses/snowy_tool_smith_1.nbt index 387e40d2..9080e6cc 100644 --- a/data/minecraft/structure/village/snowy/houses/snowy_tool_smith_1.nbt +++ b/data/minecraft/structure/village/snowy/houses/snowy_tool_smith_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:862e1b94060c332f46c6da6ed94a9c3cf0b3f656325dd784d562325ff3927bca -size 1914 +oid sha256:c3d983801da54f976b6aef7ac82c2c5d02189cef775450806291b758d5dd6eca +size 1913 diff --git a/data/minecraft/structure/village/snowy/houses/snowy_weapon_smith_1.nbt b/data/minecraft/structure/village/snowy/houses/snowy_weapon_smith_1.nbt index 8fbfe4d1..33adabc0 100644 --- a/data/minecraft/structure/village/snowy/houses/snowy_weapon_smith_1.nbt +++ b/data/minecraft/structure/village/snowy/houses/snowy_weapon_smith_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0cdaae97327a9c259931631af64afcf53ebde3ff0bc76ba0cd50164d0f7fa6fd -size 2756 +oid sha256:25ff72ef806e002cc34318a09e55126cc6a35eaa517c7637096a731839f90354 +size 2755 diff --git a/data/minecraft/structure/village/snowy/snowy_lamp_post_01.nbt b/data/minecraft/structure/village/snowy/snowy_lamp_post_01.nbt index ae1288ef..7ab171dd 100644 --- a/data/minecraft/structure/village/snowy/snowy_lamp_post_01.nbt +++ b/data/minecraft/structure/village/snowy/snowy_lamp_post_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:03d8035591e4c0c4b7d4c7b0806001609daea467cea348417142ea5df3727515 +oid sha256:1a160ebb956e41a122906567ca2975844065da635bfb018749c0c2de512686f8 size 378 diff --git a/data/minecraft/structure/village/snowy/snowy_lamp_post_02.nbt b/data/minecraft/structure/village/snowy/snowy_lamp_post_02.nbt index bebbac71..0b1fd8b5 100644 --- a/data/minecraft/structure/village/snowy/snowy_lamp_post_02.nbt +++ b/data/minecraft/structure/village/snowy/snowy_lamp_post_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eeb5f67ca07200d0e9d44fcf48d65b525f514c34616be959fca8e180ee7a29dd -size 356 +oid sha256:3b8275b6fc3590cb277b9fa3674fca8f3046e164013482da3cbe4cc620c80b8f +size 355 diff --git a/data/minecraft/structure/village/snowy/snowy_lamp_post_03.nbt b/data/minecraft/structure/village/snowy/snowy_lamp_post_03.nbt index d7155062..42e08f9d 100644 --- a/data/minecraft/structure/village/snowy/snowy_lamp_post_03.nbt +++ b/data/minecraft/structure/village/snowy/snowy_lamp_post_03.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f76bd46452815bea606e254161f9dd494d776457416f9b94bc426dc93ba1083a -size 502 +oid sha256:1f1425a01f7b4fcef8daf3c3c4d40b3ebd0056b16d78739ea25fb610fe23254c +size 501 diff --git a/data/minecraft/structure/village/snowy/streets/corner_01.nbt b/data/minecraft/structure/village/snowy/streets/corner_01.nbt index 41c85aff..406d37df 100644 --- a/data/minecraft/structure/village/snowy/streets/corner_01.nbt +++ b/data/minecraft/structure/village/snowy/streets/corner_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6208792170301de134eba62ed6b39545535f33ea1863eb1e86caa18f65a99476 -size 1097 +oid sha256:cbe37313f24615a6097c846f32197cb4ec875f86a82ff0154355a4b0e48d8d2d +size 1096 diff --git a/data/minecraft/structure/village/snowy/streets/corner_02.nbt b/data/minecraft/structure/village/snowy/streets/corner_02.nbt index aea22974..93f59f12 100644 --- a/data/minecraft/structure/village/snowy/streets/corner_02.nbt +++ b/data/minecraft/structure/village/snowy/streets/corner_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f48851258c642a34347f3934c19910e029aee2c7b65855bc879bd6b6f9000422 -size 1808 +oid sha256:eeef53f731c90e2514ba5d7e96981148d3df698ad925c4a9625d37478ec8c344 +size 1807 diff --git a/data/minecraft/structure/village/snowy/streets/corner_03.nbt b/data/minecraft/structure/village/snowy/streets/corner_03.nbt index c8870488..a130eb65 100644 --- a/data/minecraft/structure/village/snowy/streets/corner_03.nbt +++ b/data/minecraft/structure/village/snowy/streets/corner_03.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6c0901e04f18b900f2a2cf61940876af635d31cbf63a5894aad1ff610c9295a0 -size 394 +oid sha256:e3e8b2503af27925d56f81e38f564b82d39f937129d072959c7561a0544d08de +size 393 diff --git a/data/minecraft/structure/village/snowy/streets/crossroad_01.nbt b/data/minecraft/structure/village/snowy/streets/crossroad_01.nbt index 01e2ca17..dcf1264c 100644 --- a/data/minecraft/structure/village/snowy/streets/crossroad_01.nbt +++ b/data/minecraft/structure/village/snowy/streets/crossroad_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0deb6802c25d49354fffe3b3dd71b385bf6c9c3cd90459aebf97559e717070ca -size 1920 +oid sha256:f4f11628820abe8a3909cfbdb7ee8739a5066bf74b4bb88dc32f501d0da1363e +size 1919 diff --git a/data/minecraft/structure/village/snowy/streets/crossroad_02.nbt b/data/minecraft/structure/village/snowy/streets/crossroad_02.nbt index 4bcfcd96..5f4313e4 100644 --- a/data/minecraft/structure/village/snowy/streets/crossroad_02.nbt +++ b/data/minecraft/structure/village/snowy/streets/crossroad_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e42adecb4cbe119cf80d80561aac91e285cd256de4d05b31c08b4ffc459f9243 -size 1958 +oid sha256:2f57d9b954be7ddf2ad46fc96175dc0c3c53aaeb327e9e838a7b9e5beee9146e +size 1957 diff --git a/data/minecraft/structure/village/snowy/streets/crossroad_03.nbt b/data/minecraft/structure/village/snowy/streets/crossroad_03.nbt index 013452d5..4d0c8a09 100644 --- a/data/minecraft/structure/village/snowy/streets/crossroad_03.nbt +++ b/data/minecraft/structure/village/snowy/streets/crossroad_03.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1323133457d0ac31e90c1acd98fe1dbbfc57888a4c590ae8f5fcb94e48ef22c9 -size 2023 +oid sha256:eefdb9117c8aeb0102081ada17f9c9e1cba0fc3c0b4185f50d8edc097ab3e1ac +size 2022 diff --git a/data/minecraft/structure/village/snowy/streets/crossroad_04.nbt b/data/minecraft/structure/village/snowy/streets/crossroad_04.nbt index 821c5cc7..821200f8 100644 --- a/data/minecraft/structure/village/snowy/streets/crossroad_04.nbt +++ b/data/minecraft/structure/village/snowy/streets/crossroad_04.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e3c40b89c90e62da342df10e310942b909f6847410577210613cc2f2010f62d3 -size 430 +oid sha256:c1fecbaf44005ef4d8babf043aff4d58962c6d3aefc071802eee5b4c8c1cb6fb +size 429 diff --git a/data/minecraft/structure/village/snowy/streets/crossroad_05.nbt b/data/minecraft/structure/village/snowy/streets/crossroad_05.nbt index 12255de8..d21cc97e 100644 --- a/data/minecraft/structure/village/snowy/streets/crossroad_05.nbt +++ b/data/minecraft/structure/village/snowy/streets/crossroad_05.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a8aa187bda2a72b8f16bba8e60897e33eaf6d99334e3145f8cf716614ceffe25 -size 473 +oid sha256:ab737bcd89e3268707e5a97fe0b9fedd300d8029705f122d7b6e1fa10251aafc +size 472 diff --git a/data/minecraft/structure/village/snowy/streets/crossroad_06.nbt b/data/minecraft/structure/village/snowy/streets/crossroad_06.nbt index b80477f7..a65f560b 100644 --- a/data/minecraft/structure/village/snowy/streets/crossroad_06.nbt +++ b/data/minecraft/structure/village/snowy/streets/crossroad_06.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fed69ab5cbd5d1f2555ae01b0fdd2fefa08e704639c93090a073f7bebf053d92 -size 528 +oid sha256:4de342b378bbd5f1af690388653208b69c84551ad464dfaf2e6ef530725367e4 +size 527 diff --git a/data/minecraft/structure/village/snowy/streets/square_01.nbt b/data/minecraft/structure/village/snowy/streets/square_01.nbt index adeceec6..95b3595a 100644 --- a/data/minecraft/structure/village/snowy/streets/square_01.nbt +++ b/data/minecraft/structure/village/snowy/streets/square_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:94bd08beee92456950d6f796b8531e8c599102f93255c7e2b3e52b507e1538b0 -size 1510 +oid sha256:b816f639cfc9bc42bee257fcff9f99774ea9bdf391dd2ec3d7c0065349e95d89 +size 1509 diff --git a/data/minecraft/structure/village/snowy/streets/straight_01.nbt b/data/minecraft/structure/village/snowy/streets/straight_01.nbt index fd57dfe0..40ea2d87 100644 --- a/data/minecraft/structure/village/snowy/streets/straight_01.nbt +++ b/data/minecraft/structure/village/snowy/streets/straight_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4d2ba493fb454f6e8affeb131686d954df0d0bc8dfbc19d0517afe0c96959f20 -size 1851 +oid sha256:168356193cbff37bc134d3a6616526bb8a72aa38cd1256109deb12c4debfe1cc +size 1850 diff --git a/data/minecraft/structure/village/snowy/streets/straight_02.nbt b/data/minecraft/structure/village/snowy/streets/straight_02.nbt index 65f10cc0..e16dc6c6 100644 --- a/data/minecraft/structure/village/snowy/streets/straight_02.nbt +++ b/data/minecraft/structure/village/snowy/streets/straight_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:26ca3326410675e6ae9a70fe71b3dfa2a025572163516ee1955ca6a9cc7c0f0c -size 1774 +oid sha256:e351be4dee5c73affda2ddc3c950b8d4b5eff6d7c68d7f7bc1e5b8b88ad32a35 +size 1773 diff --git a/data/minecraft/structure/village/snowy/streets/straight_03.nbt b/data/minecraft/structure/village/snowy/streets/straight_03.nbt index 1cc0f2c7..f556d338 100644 --- a/data/minecraft/structure/village/snowy/streets/straight_03.nbt +++ b/data/minecraft/structure/village/snowy/streets/straight_03.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:82e9784c04200afba58dd3fe450ae784e5f8f0bc1827921e630f4c32567d7eb5 +oid sha256:5ab2a9a0494cfdab311e3291d896c4117e31ff2542ff8d0cdbbc72e750cceacb size 1218 diff --git a/data/minecraft/structure/village/snowy/streets/straight_04.nbt b/data/minecraft/structure/village/snowy/streets/straight_04.nbt index 730d19d8..8008db9b 100644 --- a/data/minecraft/structure/village/snowy/streets/straight_04.nbt +++ b/data/minecraft/structure/village/snowy/streets/straight_04.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:023b7e919dadaf4bf03bd267c2b278c006e5a13ef003d701ea768cc25139cae7 -size 709 +oid sha256:8c4ed5ba5dc319408e2e3a6cdd0891eb2d49c72f42cbd2c35f28f57d60b7a8b7 +size 708 diff --git a/data/minecraft/structure/village/snowy/streets/straight_06.nbt b/data/minecraft/structure/village/snowy/streets/straight_06.nbt index fb15afd5..88220de8 100644 --- a/data/minecraft/structure/village/snowy/streets/straight_06.nbt +++ b/data/minecraft/structure/village/snowy/streets/straight_06.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1c4cb9f23c109ddd0e20f5fd66faa5c9a8e2b64a4b704bac532b9706fb43bd17 -size 2618 +oid sha256:97bda30f36100e49b1dc2f9c79bdbaee1da7ffbf2b1f643e0892233a188b83c4 +size 2617 diff --git a/data/minecraft/structure/village/snowy/streets/straight_08.nbt b/data/minecraft/structure/village/snowy/streets/straight_08.nbt index 03a5e90e..fb48a18d 100644 --- a/data/minecraft/structure/village/snowy/streets/straight_08.nbt +++ b/data/minecraft/structure/village/snowy/streets/straight_08.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:51b9847f2fe7b600638ac3b201db10b30299a511c43be286cbf83325ba3d3d24 -size 1942 +oid sha256:59b9bd656fa7721cc07bb042f79e4b23af7c2e17675ec5864f85e838513569a4 +size 1941 diff --git a/data/minecraft/structure/village/snowy/streets/turn_01.nbt b/data/minecraft/structure/village/snowy/streets/turn_01.nbt index f626b20d..2a4fd95c 100644 --- a/data/minecraft/structure/village/snowy/streets/turn_01.nbt +++ b/data/minecraft/structure/village/snowy/streets/turn_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:af995dff4e8052af1f59e97faf081530075015ec344f1b9e92b888e3f89519eb -size 1233 +oid sha256:eed7b823b6519dbb0197c64b4ad4d3a176e5c9d1e8e71137367fe33fba086412 +size 1232 diff --git a/data/minecraft/structure/village/snowy/town_centers/snowy_meeting_point_1.nbt b/data/minecraft/structure/village/snowy/town_centers/snowy_meeting_point_1.nbt index 14ac7116..ea66f644 100644 --- a/data/minecraft/structure/village/snowy/town_centers/snowy_meeting_point_1.nbt +++ b/data/minecraft/structure/village/snowy/town_centers/snowy_meeting_point_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f6afa4dc6ea8c07fa7110db94323cb78ffd0d78a7ff144147aea54d0ae842e7d -size 2734 +oid sha256:a0da64e528ca937ac81bb7dc8ca940fe9428ee10b969c3862d85f6cd38fc6109 +size 2733 diff --git a/data/minecraft/structure/village/snowy/town_centers/snowy_meeting_point_2.nbt b/data/minecraft/structure/village/snowy/town_centers/snowy_meeting_point_2.nbt index 15416779..c8997fea 100644 --- a/data/minecraft/structure/village/snowy/town_centers/snowy_meeting_point_2.nbt +++ b/data/minecraft/structure/village/snowy/town_centers/snowy_meeting_point_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:506c19b30c42b56676aadd042fcbffbb5b31d3a7a927340c32ada72ff719aebc -size 1034 +oid sha256:03491832b2b704e3215544e9c73d89f30b05d2ffc28a04f7d56b08e9c2826325 +size 1033 diff --git a/data/minecraft/structure/village/snowy/town_centers/snowy_meeting_point_3.nbt b/data/minecraft/structure/village/snowy/town_centers/snowy_meeting_point_3.nbt index 11880681..0e04b425 100644 --- a/data/minecraft/structure/village/snowy/town_centers/snowy_meeting_point_3.nbt +++ b/data/minecraft/structure/village/snowy/town_centers/snowy_meeting_point_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c67c46ce5bde2f7f05de67aee85de3fd6570e3a01c9e4797e1be182b569fec15 -size 851 +oid sha256:c2317fbe6858df1801ab989b69241ad676d87d43de0ecda42b7031e3d8e04ae7 +size 850 diff --git a/data/minecraft/structure/village/snowy/villagers/baby.nbt b/data/minecraft/structure/village/snowy/villagers/baby.nbt index cbd5ff34..49a30f95 100644 --- a/data/minecraft/structure/village/snowy/villagers/baby.nbt +++ b/data/minecraft/structure/village/snowy/villagers/baby.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3e997c5e9fb70d730d9c8204210dfb84af0db5356f1841926585233f353543bf -size 718 +oid sha256:ccb808ca37aa552529a4ff30a8227fc4a49277acd8cea069de238cdf04255e9e +size 717 diff --git a/data/minecraft/structure/village/snowy/villagers/nitwit.nbt b/data/minecraft/structure/village/snowy/villagers/nitwit.nbt index 66a2f23b..6edfa05b 100644 --- a/data/minecraft/structure/village/snowy/villagers/nitwit.nbt +++ b/data/minecraft/structure/village/snowy/villagers/nitwit.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d2c9d45fc20a94ed589f8089e91d938dd32ca386108beb6984be60f250e1ed85 +oid sha256:f16bb287b55590573ec5a2906ecd5ac44dd05528b04ba6692253fad5310482ec size 715 diff --git a/data/minecraft/structure/village/snowy/villagers/unemployed.nbt b/data/minecraft/structure/village/snowy/villagers/unemployed.nbt index aa5a294e..395eed9d 100644 --- a/data/minecraft/structure/village/snowy/villagers/unemployed.nbt +++ b/data/minecraft/structure/village/snowy/villagers/unemployed.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c03f13095a9967c0f38142ae841a19408eaba8601d6145bcf377437b74d65ba8 +oid sha256:ff92042e8e62da9768862818b43f88cf37b267c7d088a68f5bf13d3a3b3af30d size 712 diff --git a/data/minecraft/structure/village/snowy/zombie/houses/snowy_medium_house_1.nbt b/data/minecraft/structure/village/snowy/zombie/houses/snowy_medium_house_1.nbt index 9a168b07..2d1dd24e 100644 --- a/data/minecraft/structure/village/snowy/zombie/houses/snowy_medium_house_1.nbt +++ b/data/minecraft/structure/village/snowy/zombie/houses/snowy_medium_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0b2637bf001c6f3d4b7cd0901602f713f6c137679fec0ec3f46c6fee37dca176 -size 1600 +oid sha256:e198158d4616465f8d3ac52694cfca0cd7b4e98940ccbd71355f9ed3d14730c7 +size 1599 diff --git a/data/minecraft/structure/village/snowy/zombie/houses/snowy_medium_house_2.nbt b/data/minecraft/structure/village/snowy/zombie/houses/snowy_medium_house_2.nbt index 29f65ec5..e06f3710 100644 --- a/data/minecraft/structure/village/snowy/zombie/houses/snowy_medium_house_2.nbt +++ b/data/minecraft/structure/village/snowy/zombie/houses/snowy_medium_house_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:386f1f5b4173cd89fa03f3942f47398079ec478fd6b6b58dafc7545f6a43ed39 -size 3577 +oid sha256:8bef097adb641a5cfb2af945b4128c49a939fc79511ef99f4948d7b78abf87b2 +size 3576 diff --git a/data/minecraft/structure/village/snowy/zombie/houses/snowy_medium_house_3.nbt b/data/minecraft/structure/village/snowy/zombie/houses/snowy_medium_house_3.nbt index c23d0aa4..97a4badc 100644 --- a/data/minecraft/structure/village/snowy/zombie/houses/snowy_medium_house_3.nbt +++ b/data/minecraft/structure/village/snowy/zombie/houses/snowy_medium_house_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:64c996dbf6f9a80841caf38fe81c6398e36225531a09812fccfe0edc6d47343c -size 1210 +oid sha256:7643be0ac947b196bd360f5e6638061161b676b1e08b2d833f0fc793524684b5 +size 1209 diff --git a/data/minecraft/structure/village/snowy/zombie/houses/snowy_small_house_1.nbt b/data/minecraft/structure/village/snowy/zombie/houses/snowy_small_house_1.nbt index 7f858f33..05087433 100644 --- a/data/minecraft/structure/village/snowy/zombie/houses/snowy_small_house_1.nbt +++ b/data/minecraft/structure/village/snowy/zombie/houses/snowy_small_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:798d2049c72695203c1e16ffb494cb07e933cc4a7efd0befd1dd96c816eaa939 +oid sha256:69342e43aecc23b1a6f8ce5cb5d4074fb59601aba7d62bca30b26287d4eea85b size 1321 diff --git a/data/minecraft/structure/village/snowy/zombie/houses/snowy_small_house_2.nbt b/data/minecraft/structure/village/snowy/zombie/houses/snowy_small_house_2.nbt index 9659a66a..84a081b5 100644 --- a/data/minecraft/structure/village/snowy/zombie/houses/snowy_small_house_2.nbt +++ b/data/minecraft/structure/village/snowy/zombie/houses/snowy_small_house_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e427c60bccfd5b125c880cbb82beabaa0e838969a81f3d58e70891c873b9c429 -size 2139 +oid sha256:ae180d7479828fb249e19bb8f380dc4b8b243737e52ddb3850361a6cce876990 +size 2138 diff --git a/data/minecraft/structure/village/snowy/zombie/houses/snowy_small_house_3.nbt b/data/minecraft/structure/village/snowy/zombie/houses/snowy_small_house_3.nbt index ba74871b..3be7702d 100644 --- a/data/minecraft/structure/village/snowy/zombie/houses/snowy_small_house_3.nbt +++ b/data/minecraft/structure/village/snowy/zombie/houses/snowy_small_house_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4dd214cf8f5a738845f9b2acc9d0ee04f5551c85ea66d76376d88639f32ca275 -size 1812 +oid sha256:b6630b732909de8243c1c9abea118d971e5600e6141c0918108256afa3597bd9 +size 1811 diff --git a/data/minecraft/structure/village/snowy/zombie/houses/snowy_small_house_4.nbt b/data/minecraft/structure/village/snowy/zombie/houses/snowy_small_house_4.nbt index 30d4839b..f557fc0a 100644 --- a/data/minecraft/structure/village/snowy/zombie/houses/snowy_small_house_4.nbt +++ b/data/minecraft/structure/village/snowy/zombie/houses/snowy_small_house_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:be63aa91df2ec40646dcebcafa5d0b738d5e03bb6951e2a58f3fd75f5f7fc194 -size 1608 +oid sha256:eaf2ea4851380a9fe502daa1075d7a4f6a4d6490cfa37d16d507318ae1585a02 +size 1607 diff --git a/data/minecraft/structure/village/snowy/zombie/houses/snowy_small_house_5.nbt b/data/minecraft/structure/village/snowy/zombie/houses/snowy_small_house_5.nbt index 9f7596bc..5f5c91fa 100644 --- a/data/minecraft/structure/village/snowy/zombie/houses/snowy_small_house_5.nbt +++ b/data/minecraft/structure/village/snowy/zombie/houses/snowy_small_house_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7e5b35e76c5d597823dc230150e877f6c02730a2b89a7c744195a94fabce874c -size 1148 +oid sha256:8ca531b203d2e7e503c5683ad4ed84ff73920c70565e78e6f53ab57827713c56 +size 1147 diff --git a/data/minecraft/structure/village/snowy/zombie/houses/snowy_small_house_6.nbt b/data/minecraft/structure/village/snowy/zombie/houses/snowy_small_house_6.nbt index d7da9abe..99c3c555 100644 --- a/data/minecraft/structure/village/snowy/zombie/houses/snowy_small_house_6.nbt +++ b/data/minecraft/structure/village/snowy/zombie/houses/snowy_small_house_6.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bad3d82ea4a912a368e1ddd77194b2d41d01e463064ffe77c2d90d5eee9991c5 +oid sha256:8173a148af9d2cdef0064fe27b62d92d4284308325dfa3eb746a521941af2b1e size 2221 diff --git a/data/minecraft/structure/village/snowy/zombie/houses/snowy_small_house_7.nbt b/data/minecraft/structure/village/snowy/zombie/houses/snowy_small_house_7.nbt index 950c42aa..39eced2b 100644 --- a/data/minecraft/structure/village/snowy/zombie/houses/snowy_small_house_7.nbt +++ b/data/minecraft/structure/village/snowy/zombie/houses/snowy_small_house_7.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8eb73364bcef644fb254e67f2d5269d6e7a83176057d945aac82b33a9322f263 -size 1624 +oid sha256:669678ca48cc02018f52fe5956feb0ab15bfbd38d3065314b3ecb30a74211432 +size 1623 diff --git a/data/minecraft/structure/village/snowy/zombie/houses/snowy_small_house_8.nbt b/data/minecraft/structure/village/snowy/zombie/houses/snowy_small_house_8.nbt index 922a7483..a2120683 100644 --- a/data/minecraft/structure/village/snowy/zombie/houses/snowy_small_house_8.nbt +++ b/data/minecraft/structure/village/snowy/zombie/houses/snowy_small_house_8.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:23aabf456d9b9c6323e150c4a9fd8ed15c339f3571c7a3f8c213d8aac181af5b -size 858 +oid sha256:25ecc99d68681a4f7a2af6d55ed13b9c86d1688ae72b39b93456a37cfa794eff +size 857 diff --git a/data/minecraft/structure/village/snowy/zombie/streets/corner_01.nbt b/data/minecraft/structure/village/snowy/zombie/streets/corner_01.nbt index 1c9a19a0..785e61f3 100644 --- a/data/minecraft/structure/village/snowy/zombie/streets/corner_01.nbt +++ b/data/minecraft/structure/village/snowy/zombie/streets/corner_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ef47dcfc4888464127bcf53f6b50369266ec688f60a9bf0f8e58e46c96d56463 -size 1107 +oid sha256:0a8456b6ec5999cae2669f8c886d1cf8216ea446c3dede489da6290c73f8accb +size 1106 diff --git a/data/minecraft/structure/village/snowy/zombie/streets/corner_02.nbt b/data/minecraft/structure/village/snowy/zombie/streets/corner_02.nbt index 5ff5c51d..fb9f585e 100644 --- a/data/minecraft/structure/village/snowy/zombie/streets/corner_02.nbt +++ b/data/minecraft/structure/village/snowy/zombie/streets/corner_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:610864c95ff96a0984e181d8c421499ca34dbd1a92343149d097271671cc9ddd +oid sha256:a99e27c26badcf4aaef7c5bd8250dc44b12d373989435da83fe588b2e1918122 size 1814 diff --git a/data/minecraft/structure/village/snowy/zombie/streets/corner_03.nbt b/data/minecraft/structure/village/snowy/zombie/streets/corner_03.nbt index 61bedd8d..6e3e769e 100644 --- a/data/minecraft/structure/village/snowy/zombie/streets/corner_03.nbt +++ b/data/minecraft/structure/village/snowy/zombie/streets/corner_03.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:62dc8a4a82419727c008a98b8f719bb4a9160ad18b4bfe75fa251e8f78eee13f +oid sha256:4dc7e3696a9c96d20fd3a7db46ca088f3cafa8f7b5f56a0d49c5ef6933c06142 size 399 diff --git a/data/minecraft/structure/village/snowy/zombie/streets/crossroad_01.nbt b/data/minecraft/structure/village/snowy/zombie/streets/crossroad_01.nbt index a14852f6..23bd1a87 100644 --- a/data/minecraft/structure/village/snowy/zombie/streets/crossroad_01.nbt +++ b/data/minecraft/structure/village/snowy/zombie/streets/crossroad_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cb1335b391d8711f1b5d2a2f8ac925c2df2f38b69965713d1e4ff20ef30b8c66 -size 1924 +oid sha256:857d32aa9b0d47cbcf97347d495ab60eb443454ae39eeb2fca4c607b52bb7288 +size 1923 diff --git a/data/minecraft/structure/village/snowy/zombie/streets/crossroad_02.nbt b/data/minecraft/structure/village/snowy/zombie/streets/crossroad_02.nbt index 738f3dc8..01306508 100644 --- a/data/minecraft/structure/village/snowy/zombie/streets/crossroad_02.nbt +++ b/data/minecraft/structure/village/snowy/zombie/streets/crossroad_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:560ea963a629a10cb2a5f36e96973bd2ce8d327fbb06c26cdede14312aae4871 -size 1962 +oid sha256:030a5defc7880395e3a2223bd01bff169573d4b1c1035d5d9de48df4aeef099e +size 1961 diff --git a/data/minecraft/structure/village/snowy/zombie/streets/crossroad_03.nbt b/data/minecraft/structure/village/snowy/zombie/streets/crossroad_03.nbt index c383b48f..7af36557 100644 --- a/data/minecraft/structure/village/snowy/zombie/streets/crossroad_03.nbt +++ b/data/minecraft/structure/village/snowy/zombie/streets/crossroad_03.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d8509a30ca8149d434d1a6a9380b6f97c2470b613a126fe62775b132d9971502 -size 2029 +oid sha256:6c776512a5fa661fe5d2a3c137bb7b5d3eaa033e2813c90fe05cf79d36d4337a +size 2028 diff --git a/data/minecraft/structure/village/snowy/zombie/streets/crossroad_04.nbt b/data/minecraft/structure/village/snowy/zombie/streets/crossroad_04.nbt index 0d92be44..6971c0de 100644 --- a/data/minecraft/structure/village/snowy/zombie/streets/crossroad_04.nbt +++ b/data/minecraft/structure/village/snowy/zombie/streets/crossroad_04.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bdc0b2363d3f720a51fa997bb8e239df48ceb1684f35a02fe74cfdc9bc954668 +oid sha256:2691852a03e83a0a93199e0a7a52f168fa80c812df3a04e6d3192536adc4ebe2 size 435 diff --git a/data/minecraft/structure/village/snowy/zombie/streets/crossroad_05.nbt b/data/minecraft/structure/village/snowy/zombie/streets/crossroad_05.nbt index 3a3c8652..810290cd 100644 --- a/data/minecraft/structure/village/snowy/zombie/streets/crossroad_05.nbt +++ b/data/minecraft/structure/village/snowy/zombie/streets/crossroad_05.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d258bd7be8a5ee28a81ee4dd783ba909f3b873db48c59c7bb614c354f91192e9 -size 477 +oid sha256:837d833ef0aaeaa86c8848a269973f3c41c82b8c3fd5b4f28e0cd446d47d09d5 +size 476 diff --git a/data/minecraft/structure/village/snowy/zombie/streets/crossroad_06.nbt b/data/minecraft/structure/village/snowy/zombie/streets/crossroad_06.nbt index 6503217a..deb631a2 100644 --- a/data/minecraft/structure/village/snowy/zombie/streets/crossroad_06.nbt +++ b/data/minecraft/structure/village/snowy/zombie/streets/crossroad_06.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0f2e34c4282da87d18e41b740dc579a7ac8000ed6f5a40e053944d79159d4161 -size 532 +oid sha256:fcad397fc4ab9b57143c77462c43e8c1f0608a557fbba1c1a40515f6279578a6 +size 531 diff --git a/data/minecraft/structure/village/snowy/zombie/streets/square_01.nbt b/data/minecraft/structure/village/snowy/zombie/streets/square_01.nbt index 76c40219..da00fa6b 100644 --- a/data/minecraft/structure/village/snowy/zombie/streets/square_01.nbt +++ b/data/minecraft/structure/village/snowy/zombie/streets/square_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2a90674655b4372fc0f4129edfbc617af46018f9fc6dc19687611766ab6d4b5a -size 1515 +oid sha256:69a28e9fed0dd2f52b43c59f71f7ac25cbb7ff95628e1c4066b6b9b9e5335cfd +size 1514 diff --git a/data/minecraft/structure/village/snowy/zombie/streets/straight_01.nbt b/data/minecraft/structure/village/snowy/zombie/streets/straight_01.nbt index 0537bf84..0df0f845 100644 --- a/data/minecraft/structure/village/snowy/zombie/streets/straight_01.nbt +++ b/data/minecraft/structure/village/snowy/zombie/streets/straight_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:12fdf0596fcf9ed0a3b9fd29ab5adb1efda8ee358b8aa606a469276538e338e4 -size 1856 +oid sha256:aedb86bbbf65dc7980a55cc53d3f458c74e38c08d25f6e138e825c066ea42bae +size 1855 diff --git a/data/minecraft/structure/village/snowy/zombie/streets/straight_02.nbt b/data/minecraft/structure/village/snowy/zombie/streets/straight_02.nbt index 7948730c..d99c7697 100644 --- a/data/minecraft/structure/village/snowy/zombie/streets/straight_02.nbt +++ b/data/minecraft/structure/village/snowy/zombie/streets/straight_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ea16b8d9cb389c3430028da6fefd4fa96c59ce836782db6423865968b9738169 -size 1781 +oid sha256:8f7d41d0a77a3c0cf226112b9199644251d30459be611de3f5b82e888790fed3 +size 1780 diff --git a/data/minecraft/structure/village/snowy/zombie/streets/straight_03.nbt b/data/minecraft/structure/village/snowy/zombie/streets/straight_03.nbt index 9606ade6..3da1c354 100644 --- a/data/minecraft/structure/village/snowy/zombie/streets/straight_03.nbt +++ b/data/minecraft/structure/village/snowy/zombie/streets/straight_03.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9fee96a6083bb10e36d35a0c4e296227b891c6d9ddb84b3aa2412616c1ae6c93 -size 1224 +oid sha256:827195bd11e8150a2e29acbd1f66b171ce6d07019342c41d5081551333a7ae08 +size 1223 diff --git a/data/minecraft/structure/village/snowy/zombie/streets/straight_04.nbt b/data/minecraft/structure/village/snowy/zombie/streets/straight_04.nbt index e2211510..676dd19e 100644 --- a/data/minecraft/structure/village/snowy/zombie/streets/straight_04.nbt +++ b/data/minecraft/structure/village/snowy/zombie/streets/straight_04.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:91b203f6468a86757f36b62f307af0a15ed511d861e83ee95aeb13f13f8a66ad -size 718 +oid sha256:8015e97ea916d67fbd0b6d58291a5cd6dbb4f43717ecda9c91492e4abb1865e9 +size 717 diff --git a/data/minecraft/structure/village/snowy/zombie/streets/straight_06.nbt b/data/minecraft/structure/village/snowy/zombie/streets/straight_06.nbt index 49380fa6..9e0029f3 100644 --- a/data/minecraft/structure/village/snowy/zombie/streets/straight_06.nbt +++ b/data/minecraft/structure/village/snowy/zombie/streets/straight_06.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a293963bbf83dea8448e7f556788e6217cf9527328f2531b1c29db86444bad2a -size 2623 +oid sha256:15c6c7f86c663ff912f35882c49bdb9a6e1aed045fcf4171eefc6e2f15295683 +size 2622 diff --git a/data/minecraft/structure/village/snowy/zombie/streets/straight_08.nbt b/data/minecraft/structure/village/snowy/zombie/streets/straight_08.nbt index d008f039..359ec15a 100644 --- a/data/minecraft/structure/village/snowy/zombie/streets/straight_08.nbt +++ b/data/minecraft/structure/village/snowy/zombie/streets/straight_08.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:94b7839e879fea63b80a21e5dc98588aa1d6edffefa0f7ef9e99a9cc1934261a -size 1947 +oid sha256:3a0a0e07402174157874a0c0c8b66bb4559ada838cfdcf571c3166ba650236d4 +size 1946 diff --git a/data/minecraft/structure/village/snowy/zombie/streets/turn_01.nbt b/data/minecraft/structure/village/snowy/zombie/streets/turn_01.nbt index 79b29465..f972d18d 100644 --- a/data/minecraft/structure/village/snowy/zombie/streets/turn_01.nbt +++ b/data/minecraft/structure/village/snowy/zombie/streets/turn_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fcf49da876fcc98cf8069fddc11ce8e9b073a7fac1b149837b1a48db1c432320 +oid sha256:45f757a7302daaba0decab608dee306a80530f582e8de91ebcc1f1313101702f size 1237 diff --git a/data/minecraft/structure/village/snowy/zombie/town_centers/snowy_meeting_point_1.nbt b/data/minecraft/structure/village/snowy/zombie/town_centers/snowy_meeting_point_1.nbt index 3af72872..33a0beb9 100644 --- a/data/minecraft/structure/village/snowy/zombie/town_centers/snowy_meeting_point_1.nbt +++ b/data/minecraft/structure/village/snowy/zombie/town_centers/snowy_meeting_point_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b896156c74959088267b5e61aaa95e70a7530921097f66ded691fee3457277cf -size 2694 +oid sha256:1655df6ee1d5a733a5b8c1de8b1dff74eb9f6bfae15007b753a0136e0bd8734c +size 2693 diff --git a/data/minecraft/structure/village/snowy/zombie/town_centers/snowy_meeting_point_2.nbt b/data/minecraft/structure/village/snowy/zombie/town_centers/snowy_meeting_point_2.nbt index 344221f9..342887b6 100644 --- a/data/minecraft/structure/village/snowy/zombie/town_centers/snowy_meeting_point_2.nbt +++ b/data/minecraft/structure/village/snowy/zombie/town_centers/snowy_meeting_point_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9be7255e2918b2b1217b82649832fbcf90575e10b55083891f01a2a28b5cc017 -size 990 +oid sha256:25c7c38d47a5e6a6e45a49352900a81b47105815979a495af1867ddef4672199 +size 989 diff --git a/data/minecraft/structure/village/snowy/zombie/town_centers/snowy_meeting_point_3.nbt b/data/minecraft/structure/village/snowy/zombie/town_centers/snowy_meeting_point_3.nbt index 548cade0..f55e719a 100644 --- a/data/minecraft/structure/village/snowy/zombie/town_centers/snowy_meeting_point_3.nbt +++ b/data/minecraft/structure/village/snowy/zombie/town_centers/snowy_meeting_point_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8f2b598b5286701c2eae71864d1fb6f3935b7c799a82aa632094b3be6ed87290 -size 816 +oid sha256:0a43bf43617810a75e4bf54092bc234b22ff4daf5e6b79e07d3b39e4c5827de1 +size 815 diff --git a/data/minecraft/structure/village/snowy/zombie/villagers/nitwit.nbt b/data/minecraft/structure/village/snowy/zombie/villagers/nitwit.nbt index cf3bee0e..cbe3e483 100644 --- a/data/minecraft/structure/village/snowy/zombie/villagers/nitwit.nbt +++ b/data/minecraft/structure/village/snowy/zombie/villagers/nitwit.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:417177f1a102ea34a9a702fe849549afe29abb1ef13bd67f3281faaa60a1485a +oid sha256:af72cc9c54fc690787f5e59625b08d7fc214bdf8cdae2319720823a649ccb590 size 721 diff --git a/data/minecraft/structure/village/snowy/zombie/villagers/unemployed.nbt b/data/minecraft/structure/village/snowy/zombie/villagers/unemployed.nbt index 710d9d3e..312ef0fe 100644 --- a/data/minecraft/structure/village/snowy/zombie/villagers/unemployed.nbt +++ b/data/minecraft/structure/village/snowy/zombie/villagers/unemployed.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5f7ce16482d57969a34fec2a0d65fe3d3d5558bdf95845a8b85b063c8a88a311 -size 719 +oid sha256:21cb9936baa1b3e1f9980c7c99e71cdf2830adb766e154701b294cb353c4e8ab +size 718 diff --git a/data/minecraft/structure/village/taiga/houses/taiga_animal_pen_1.nbt b/data/minecraft/structure/village/taiga/houses/taiga_animal_pen_1.nbt index 3f2bba61..ed63aed2 100644 --- a/data/minecraft/structure/village/taiga/houses/taiga_animal_pen_1.nbt +++ b/data/minecraft/structure/village/taiga/houses/taiga_animal_pen_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b85dbef27a030e855a051a84ffbddff3a5a2df73ff851a7ee67e7e8b8598fd4b -size 2090 +oid sha256:4b3c22f1449f1e286dfafaf74951c535ee3f7b076a1cb74e98ae6c49bb6e371b +size 2089 diff --git a/data/minecraft/structure/village/taiga/houses/taiga_armorer_2.nbt b/data/minecraft/structure/village/taiga/houses/taiga_armorer_2.nbt index 44186138..38f06ee4 100644 --- a/data/minecraft/structure/village/taiga/houses/taiga_armorer_2.nbt +++ b/data/minecraft/structure/village/taiga/houses/taiga_armorer_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ded7996c485b246d64fc35d3fc6c900ea75ebc17e6cfc852ac128cc6722ff836 -size 2579 +oid sha256:1a12c8171c7498fe0ce1ec764fa8ae70d657cc8384ae4441e8929c889d9be692 +size 2578 diff --git a/data/minecraft/structure/village/taiga/houses/taiga_armorer_house_1.nbt b/data/minecraft/structure/village/taiga/houses/taiga_armorer_house_1.nbt index 14bccdb6..7e7d1031 100644 --- a/data/minecraft/structure/village/taiga/houses/taiga_armorer_house_1.nbt +++ b/data/minecraft/structure/village/taiga/houses/taiga_armorer_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a2dc942fa007a0c13b122b45a49c305dd7a9763a231aab60ecfce563035a5fec -size 2072 +oid sha256:728adbb6498fa99d8c8423ca4b3395de9a638e4c55dfc4739bde1f6174241853 +size 2070 diff --git a/data/minecraft/structure/village/taiga/houses/taiga_butcher_shop_1.nbt b/data/minecraft/structure/village/taiga/houses/taiga_butcher_shop_1.nbt index c0074dcc..785e692d 100644 --- a/data/minecraft/structure/village/taiga/houses/taiga_butcher_shop_1.nbt +++ b/data/minecraft/structure/village/taiga/houses/taiga_butcher_shop_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cae750176bb88e1111073dcad80513e2bc196484363828d24de5cc56c1948eb5 +oid sha256:af2aae3dd9d72b715d4ae3141c31458c4ccff87e0e52bebf1eec2dc532b6a27b size 3295 diff --git a/data/minecraft/structure/village/taiga/houses/taiga_cartographer_house_1.nbt b/data/minecraft/structure/village/taiga/houses/taiga_cartographer_house_1.nbt index c92c6425..aecc9898 100644 --- a/data/minecraft/structure/village/taiga/houses/taiga_cartographer_house_1.nbt +++ b/data/minecraft/structure/village/taiga/houses/taiga_cartographer_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c0bd117ccab5f6d26156466d1484168f7102cb27a67d8cc93ef9a9bb1a71fa27 -size 2606 +oid sha256:cfc938b9b4702ceb3758b5902cc6de3ad076bb4e1001a6f0156abfd937781d7c +size 2604 diff --git a/data/minecraft/structure/village/taiga/houses/taiga_fisher_cottage_1.nbt b/data/minecraft/structure/village/taiga/houses/taiga_fisher_cottage_1.nbt index 2244c038..9ccb688f 100644 --- a/data/minecraft/structure/village/taiga/houses/taiga_fisher_cottage_1.nbt +++ b/data/minecraft/structure/village/taiga/houses/taiga_fisher_cottage_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ed659dae3844b09081176adee04d41bf4f4632884d2fc7d43ff4b9c16395b3d0 -size 3653 +oid sha256:c1d2a708aafe15b8c1a6a16e7fc5c178ed1b32699f02e620f32d83456548b860 +size 3652 diff --git a/data/minecraft/structure/village/taiga/houses/taiga_fletcher_house_1.nbt b/data/minecraft/structure/village/taiga/houses/taiga_fletcher_house_1.nbt index 3cb123b1..b9682031 100644 --- a/data/minecraft/structure/village/taiga/houses/taiga_fletcher_house_1.nbt +++ b/data/minecraft/structure/village/taiga/houses/taiga_fletcher_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4b413e7460e1454f0553d9fcbd0a3612864b422c1af437a67f41fdc681f58343 -size 2767 +oid sha256:8750515d1a88e8521fd1005e9b0c0a0f4af3ca27ac5f79211f5ab710a3b438dc +size 2766 diff --git a/data/minecraft/structure/village/taiga/houses/taiga_large_farm_1.nbt b/data/minecraft/structure/village/taiga/houses/taiga_large_farm_1.nbt index 149cfccf..420985b9 100644 --- a/data/minecraft/structure/village/taiga/houses/taiga_large_farm_1.nbt +++ b/data/minecraft/structure/village/taiga/houses/taiga_large_farm_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0b93b6172b9babf936e095ff8c6ba534142285107e4b91d07aedf5a33860be6f -size 2212 +oid sha256:80ad34dc0ae500f2a31b3dfc229f0819b51dfef83452b40c48ed3b47b311c116 +size 2211 diff --git a/data/minecraft/structure/village/taiga/houses/taiga_large_farm_2.nbt b/data/minecraft/structure/village/taiga/houses/taiga_large_farm_2.nbt index 503ea51c..7e7fc600 100644 --- a/data/minecraft/structure/village/taiga/houses/taiga_large_farm_2.nbt +++ b/data/minecraft/structure/village/taiga/houses/taiga_large_farm_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7e4a45ebd8d71541c44760a18a7f1107c96dcde4ff9c954954f694886a7c192f +oid sha256:f735028bbf094d686175759dcd44d105f4764f0ed181fb244add5a6fa4e6001d size 1599 diff --git a/data/minecraft/structure/village/taiga/houses/taiga_library_1.nbt b/data/minecraft/structure/village/taiga/houses/taiga_library_1.nbt index 31a69eec..791893d5 100644 --- a/data/minecraft/structure/village/taiga/houses/taiga_library_1.nbt +++ b/data/minecraft/structure/village/taiga/houses/taiga_library_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9db6ac2f92b04cfaa98ae8b4d7ab82bcbced4adce219ecba57600a995cee6a4e -size 3447 +oid sha256:2d7cd39cbc6d9df586f0a779fd5b38205b71443c0a66e7b8f4b3a77dee95443b +size 3446 diff --git a/data/minecraft/structure/village/taiga/houses/taiga_masons_house_1.nbt b/data/minecraft/structure/village/taiga/houses/taiga_masons_house_1.nbt index eba69e27..8c397544 100644 --- a/data/minecraft/structure/village/taiga/houses/taiga_masons_house_1.nbt +++ b/data/minecraft/structure/village/taiga/houses/taiga_masons_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:72c9b04271d6f689aa0d2f017fbb1b560a81b3c0c0326f482c81defce4fa91c6 +oid sha256:dca16336d2ac4b4190c68c96505128eeeb08f71ecf061b0ccf924f91cf2ce5fc size 2189 diff --git a/data/minecraft/structure/village/taiga/houses/taiga_medium_house_1.nbt b/data/minecraft/structure/village/taiga/houses/taiga_medium_house_1.nbt index 7e946f84..d1eda34f 100644 --- a/data/minecraft/structure/village/taiga/houses/taiga_medium_house_1.nbt +++ b/data/minecraft/structure/village/taiga/houses/taiga_medium_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:07bbc8d880dc35b017f8d8951450300ae473ee12c8759ef572bf2eb4c1ab1f75 -size 2835 +oid sha256:148c5a767aaece1943c0dca051bd5ec9a8278de5aeeeaf13f05c96660db49579 +size 2833 diff --git a/data/minecraft/structure/village/taiga/houses/taiga_medium_house_2.nbt b/data/minecraft/structure/village/taiga/houses/taiga_medium_house_2.nbt index 594b2444..19d9a03a 100644 --- a/data/minecraft/structure/village/taiga/houses/taiga_medium_house_2.nbt +++ b/data/minecraft/structure/village/taiga/houses/taiga_medium_house_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4bdf510ae0657724a13b496e2615e884f6f9f18a0ee5b32cec0c05dd0d2d3c0f -size 2609 +oid sha256:baef31560e442df52a94d49ddb1d5dfe217cc12dc4d3f5901e9d4c1dec57b465 +size 2608 diff --git a/data/minecraft/structure/village/taiga/houses/taiga_medium_house_3.nbt b/data/minecraft/structure/village/taiga/houses/taiga_medium_house_3.nbt index 571028b7..28ecf5a2 100644 --- a/data/minecraft/structure/village/taiga/houses/taiga_medium_house_3.nbt +++ b/data/minecraft/structure/village/taiga/houses/taiga_medium_house_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0e513cb10ab2d053ad4bc7c1f6b0eb1d38a6e37432da53fc23417ec5486cff2d -size 3065 +oid sha256:92a75a39e2f5a55ddbb6b3baf28ece361f9438b53660730b20900e0055ea389b +size 3064 diff --git a/data/minecraft/structure/village/taiga/houses/taiga_medium_house_4.nbt b/data/minecraft/structure/village/taiga/houses/taiga_medium_house_4.nbt index a1ad1ac4..40ae787f 100644 --- a/data/minecraft/structure/village/taiga/houses/taiga_medium_house_4.nbt +++ b/data/minecraft/structure/village/taiga/houses/taiga_medium_house_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:243b9a7357de0117c3a9ce2e6958d23b1232e55089485df7c4187f01aa48193c -size 2771 +oid sha256:db7f9e95d2382dd69e043aab1d476aba5d0dc589381099ac598041e1373463b6 +size 2770 diff --git a/data/minecraft/structure/village/taiga/houses/taiga_shepherds_house_1.nbt b/data/minecraft/structure/village/taiga/houses/taiga_shepherds_house_1.nbt index 2380e4fb..b3dfd811 100644 --- a/data/minecraft/structure/village/taiga/houses/taiga_shepherds_house_1.nbt +++ b/data/minecraft/structure/village/taiga/houses/taiga_shepherds_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:16245f23d8f31220959d69b10ea4f3950be33df8a5ece86100b37fb28932ec50 -size 3016 +oid sha256:2ad848708d210958f8754954e120d1284d464820782ae11fe964ccc0514ef661 +size 3015 diff --git a/data/minecraft/structure/village/taiga/houses/taiga_small_farm_1.nbt b/data/minecraft/structure/village/taiga/houses/taiga_small_farm_1.nbt index 32e605c0..8908ee08 100644 --- a/data/minecraft/structure/village/taiga/houses/taiga_small_farm_1.nbt +++ b/data/minecraft/structure/village/taiga/houses/taiga_small_farm_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a7bb8de8c51dee57ddb67b3a449791a0d27bfd91ff4db5368cfec6b0864d0cb6 +oid sha256:1681d46f36ee343ebff20db3765109e501d25c56161330bc3827e14abde7c061 size 1256 diff --git a/data/minecraft/structure/village/taiga/houses/taiga_small_house_1.nbt b/data/minecraft/structure/village/taiga/houses/taiga_small_house_1.nbt index 1f94a5f4..d6db740d 100644 --- a/data/minecraft/structure/village/taiga/houses/taiga_small_house_1.nbt +++ b/data/minecraft/structure/village/taiga/houses/taiga_small_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:21eaa0659d09bf2ea8f15c8f8d884ab507679a0c22ae8528f42aa1fba3080a1d -size 2374 +oid sha256:3857e0dcee7b9c11e45b7c46a443dd29de87157352630a3ccd8e92fcd6a4f335 +size 2373 diff --git a/data/minecraft/structure/village/taiga/houses/taiga_small_house_2.nbt b/data/minecraft/structure/village/taiga/houses/taiga_small_house_2.nbt index ff3b666b..201ea62a 100644 --- a/data/minecraft/structure/village/taiga/houses/taiga_small_house_2.nbt +++ b/data/minecraft/structure/village/taiga/houses/taiga_small_house_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:45bfcd643558eb79afc76a169d5288d9fd7aca1a16c79e517083557984cad03e -size 1775 +oid sha256:a3d7de693c58ec742791694f940f2fda23184512299f7483c6b9f86d73443df7 +size 1774 diff --git a/data/minecraft/structure/village/taiga/houses/taiga_small_house_3.nbt b/data/minecraft/structure/village/taiga/houses/taiga_small_house_3.nbt index 913575a9..b16057f5 100644 --- a/data/minecraft/structure/village/taiga/houses/taiga_small_house_3.nbt +++ b/data/minecraft/structure/village/taiga/houses/taiga_small_house_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:69c8ecd2bd485b7e4505a74c824f1a0a589b268252e687809d19472ce5558c76 -size 1870 +oid sha256:b869965df7741f6470ee6d9c8f5b9a222db5572cfef0c0cfc873e0b7ecb9ba5b +size 1869 diff --git a/data/minecraft/structure/village/taiga/houses/taiga_small_house_4.nbt b/data/minecraft/structure/village/taiga/houses/taiga_small_house_4.nbt index b0812ee4..6933fcf2 100644 --- a/data/minecraft/structure/village/taiga/houses/taiga_small_house_4.nbt +++ b/data/minecraft/structure/village/taiga/houses/taiga_small_house_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3ce1d0cfa803c8fdaa183150a566291a85dd6489ab52ce9103661a57f8122602 -size 1607 +oid sha256:4cf4f161af42febeb5e8e098af8e9612b674773b5886bcec6f108f2d848129d6 +size 1606 diff --git a/data/minecraft/structure/village/taiga/houses/taiga_small_house_5.nbt b/data/minecraft/structure/village/taiga/houses/taiga_small_house_5.nbt index 4b6badb1..85e1f853 100644 --- a/data/minecraft/structure/village/taiga/houses/taiga_small_house_5.nbt +++ b/data/minecraft/structure/village/taiga/houses/taiga_small_house_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eb40842444330027733a93c8bee905b17ab9fe0960938dbbab53f23f76dc9093 -size 2042 +oid sha256:c147eacd6afb4f7b4c72882fc4c5b454563fe794ceacd107634c263074f6d5c3 +size 2040 diff --git a/data/minecraft/structure/village/taiga/houses/taiga_tannery_1.nbt b/data/minecraft/structure/village/taiga/houses/taiga_tannery_1.nbt index 7a56085c..d38c50dc 100644 --- a/data/minecraft/structure/village/taiga/houses/taiga_tannery_1.nbt +++ b/data/minecraft/structure/village/taiga/houses/taiga_tannery_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9f78d4c4b21b495106ac8bf42fac4244fde9eb78a865bd3fee1b9fc4da2035de -size 2156 +oid sha256:9646765feb19db94924c69c24d8d17153830b139e95140af5d76d9710b6e153f +size 2155 diff --git a/data/minecraft/structure/village/taiga/houses/taiga_temple_1.nbt b/data/minecraft/structure/village/taiga/houses/taiga_temple_1.nbt index 449b9a98..2b256169 100644 --- a/data/minecraft/structure/village/taiga/houses/taiga_temple_1.nbt +++ b/data/minecraft/structure/village/taiga/houses/taiga_temple_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:76dcdb12604539231fe8389db31100bc6b32b449aaa4d50d8211e95e89c48b5d -size 6643 +oid sha256:f516bb8938d7f0eb944708ebded7e2697ee4b63e6ac541c2d5adb4fbeb4682c9 +size 6641 diff --git a/data/minecraft/structure/village/taiga/houses/taiga_tool_smith_1.nbt b/data/minecraft/structure/village/taiga/houses/taiga_tool_smith_1.nbt index 204beb72..3572bd2f 100644 --- a/data/minecraft/structure/village/taiga/houses/taiga_tool_smith_1.nbt +++ b/data/minecraft/structure/village/taiga/houses/taiga_tool_smith_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c4ca8168ec78463c56f3595157c85e2a1cc4ae9ee038eb645cdeca150a4a9c04 -size 2164 +oid sha256:6ae22a99598665eb239e8f2f36787851233fbabaa9de6bf481c1fc2821117f9c +size 2163 diff --git a/data/minecraft/structure/village/taiga/houses/taiga_weaponsmith_1.nbt b/data/minecraft/structure/village/taiga/houses/taiga_weaponsmith_1.nbt index 5ccb6407..de3bc602 100644 --- a/data/minecraft/structure/village/taiga/houses/taiga_weaponsmith_1.nbt +++ b/data/minecraft/structure/village/taiga/houses/taiga_weaponsmith_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:56ccead54119d8d890f2b4178717a4458421e1606a22ab399e69bfdb66cc70d4 -size 2076 +oid sha256:f1bdc7fa0afe4c64d4662bd0885f044c8250bde631520b83a2ed17370c6e63b5 +size 2075 diff --git a/data/minecraft/structure/village/taiga/houses/taiga_weaponsmith_2.nbt b/data/minecraft/structure/village/taiga/houses/taiga_weaponsmith_2.nbt index efb96e1e..608177e0 100644 --- a/data/minecraft/structure/village/taiga/houses/taiga_weaponsmith_2.nbt +++ b/data/minecraft/structure/village/taiga/houses/taiga_weaponsmith_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:290955afda9a77e784e7e641f985d0732ad869d11751044c55e0cef025a89bfa -size 1187 +oid sha256:83859e4cbf89c431489dde29a1787b190e37b9c198c593997dceed2a46463d09 +size 1186 diff --git a/data/minecraft/structure/village/taiga/streets/corner_01.nbt b/data/minecraft/structure/village/taiga/streets/corner_01.nbt index b73a7f16..f3dbb048 100644 --- a/data/minecraft/structure/village/taiga/streets/corner_01.nbt +++ b/data/minecraft/structure/village/taiga/streets/corner_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e5aa7765586fda6b1b9d3c919014fbbec9009ad3f0d1a7e7af4994add6a24204 -size 1181 +oid sha256:f294b176b0cf4cd8ceed9bee1c9ad17dd4a832cfba81b2665b7ff50327d3561c +size 1180 diff --git a/data/minecraft/structure/village/taiga/streets/corner_02.nbt b/data/minecraft/structure/village/taiga/streets/corner_02.nbt index c555e96d..b622cfcb 100644 --- a/data/minecraft/structure/village/taiga/streets/corner_02.nbt +++ b/data/minecraft/structure/village/taiga/streets/corner_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cd12cfce13c315db4dbdf1c266feb90e09121d335d0a3acef3cc249ad0f7a709 +oid sha256:3c886b430e31cd361077dcc055d5defba6b24306338c2bc77ff39e886a58154d size 1183 diff --git a/data/minecraft/structure/village/taiga/streets/corner_03.nbt b/data/minecraft/structure/village/taiga/streets/corner_03.nbt index 43ffa9a4..02f55313 100644 --- a/data/minecraft/structure/village/taiga/streets/corner_03.nbt +++ b/data/minecraft/structure/village/taiga/streets/corner_03.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:85677f0780752057ec853085dcbb0bb655e3322a48ba5db48d758f67b59c6dc9 -size 350 +oid sha256:0d9e34217c72fb342086097bc99c32b3dbd59d9d7d04939676b04b5420f5e64f +size 348 diff --git a/data/minecraft/structure/village/taiga/streets/crossroad_01.nbt b/data/minecraft/structure/village/taiga/streets/crossroad_01.nbt index 8b7b2a78..95110131 100644 --- a/data/minecraft/structure/village/taiga/streets/crossroad_01.nbt +++ b/data/minecraft/structure/village/taiga/streets/crossroad_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:549fd47f6c53984e77fffa1f725cab2aaeb78c3e6d90be36e8afec3ea9174dd3 +oid sha256:20305f856a25d19c9311589a1901a03ce7b077b09c658c5bb1ea7bde984de97a size 1213 diff --git a/data/minecraft/structure/village/taiga/streets/crossroad_02.nbt b/data/minecraft/structure/village/taiga/streets/crossroad_02.nbt index 061feff5..6d70beca 100644 --- a/data/minecraft/structure/village/taiga/streets/crossroad_02.nbt +++ b/data/minecraft/structure/village/taiga/streets/crossroad_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:237a708229eae8849aeb0c61801e0121057def8c9711d4dc3d18221a68f30334 +oid sha256:fb6a9be1832d7eb35c432b2b5d0e2a98dc75d99ec99a243043a35ce39c8488fd size 1159 diff --git a/data/minecraft/structure/village/taiga/streets/crossroad_03.nbt b/data/minecraft/structure/village/taiga/streets/crossroad_03.nbt index 016214f0..db9af70b 100644 --- a/data/minecraft/structure/village/taiga/streets/crossroad_03.nbt +++ b/data/minecraft/structure/village/taiga/streets/crossroad_03.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a10b47189c6139dc6adc875d3f580879c55333b934c9d8487f3df30dc82bd5de -size 1202 +oid sha256:b1b179bba64bd3c5f8b0fa3ed401f77f3ef496899e7950c40ed2ac2320fab357 +size 1201 diff --git a/data/minecraft/structure/village/taiga/streets/crossroad_04.nbt b/data/minecraft/structure/village/taiga/streets/crossroad_04.nbt index 4ec886c3..63c0d6db 100644 --- a/data/minecraft/structure/village/taiga/streets/crossroad_04.nbt +++ b/data/minecraft/structure/village/taiga/streets/crossroad_04.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:831b5c94a59c673ae7452e4f16f20cd1a2b0a98587114b5641234a0b29cd75a7 -size 435 +oid sha256:ebf675c2d6eca2338fe9349d7223f8355f2eb625fc0653124239f9502da63ad1 +size 434 diff --git a/data/minecraft/structure/village/taiga/streets/crossroad_05.nbt b/data/minecraft/structure/village/taiga/streets/crossroad_05.nbt index 71407aa9..126f195b 100644 --- a/data/minecraft/structure/village/taiga/streets/crossroad_05.nbt +++ b/data/minecraft/structure/village/taiga/streets/crossroad_05.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8a5b7c9b5c6bbbfd9b6d5016fcd6948f1b4e8f86a1aa390957f8e17922ecbee2 -size 409 +oid sha256:322f29643e7e769b9dd14d13d27b9c8d08e7c99977ee56af1108c2dd245d36f4 +size 408 diff --git a/data/minecraft/structure/village/taiga/streets/crossroad_06.nbt b/data/minecraft/structure/village/taiga/streets/crossroad_06.nbt index 04b43d43..e7d3671d 100644 --- a/data/minecraft/structure/village/taiga/streets/crossroad_06.nbt +++ b/data/minecraft/structure/village/taiga/streets/crossroad_06.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6e7d31e44d5836bc9143c1f5ce255d86a7da49b5b750dd196596ca5d0df77372 -size 470 +oid sha256:e636fc06130e2b94b3317ca472dbebb1f07021027b474d9b6c640dcd044bbcbe +size 468 diff --git a/data/minecraft/structure/village/taiga/streets/straight_01.nbt b/data/minecraft/structure/village/taiga/streets/straight_01.nbt index 9ff45a7d..84063ce3 100644 --- a/data/minecraft/structure/village/taiga/streets/straight_01.nbt +++ b/data/minecraft/structure/village/taiga/streets/straight_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0595d5fd04f3490438d8cff3aa179e7fe6a177a0fa27d39b62b232ae358616a1 -size 1130 +oid sha256:709260ae5b924aa83b98f3cdad2e24ee766cb95789e7cbee4bdbba52b8c5994e +size 1129 diff --git a/data/minecraft/structure/village/taiga/streets/straight_02.nbt b/data/minecraft/structure/village/taiga/streets/straight_02.nbt index e04551c6..af273311 100644 --- a/data/minecraft/structure/village/taiga/streets/straight_02.nbt +++ b/data/minecraft/structure/village/taiga/streets/straight_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ffb157acc59b8c2b9836773ebdd6d4e51225082e784ff198e4c8f15cbad1536c -size 1146 +oid sha256:4aa894894e31cdbe3c6e05a1295c75c1209b62b7c4b7c840735ccdaf45177a3c +size 1145 diff --git a/data/minecraft/structure/village/taiga/streets/straight_03.nbt b/data/minecraft/structure/village/taiga/streets/straight_03.nbt index 94a2dbca..4c0fd669 100644 --- a/data/minecraft/structure/village/taiga/streets/straight_03.nbt +++ b/data/minecraft/structure/village/taiga/streets/straight_03.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:aa305f9d34e2c3d445135b9e1e7cf395d02b6c2e7fc626f1d456c1877a2e33c7 -size 775 +oid sha256:83f51ac7a32b466773fa79e689d56b03f574d3b2c9d92208fa888d26544a0d9f +size 774 diff --git a/data/minecraft/structure/village/taiga/streets/straight_04.nbt b/data/minecraft/structure/village/taiga/streets/straight_04.nbt index b3736c15..fdc09011 100644 --- a/data/minecraft/structure/village/taiga/streets/straight_04.nbt +++ b/data/minecraft/structure/village/taiga/streets/straight_04.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:de77824ca54c3de04fac36b93ba3d58d7965d609626641810efa79c920509abb +oid sha256:0f614d78b8104093e6969ad69880e4c75e817fefde412940017ca1a3781361a0 size 685 diff --git a/data/minecraft/structure/village/taiga/streets/straight_05.nbt b/data/minecraft/structure/village/taiga/streets/straight_05.nbt index 4160b68e..855e2ea3 100644 --- a/data/minecraft/structure/village/taiga/streets/straight_05.nbt +++ b/data/minecraft/structure/village/taiga/streets/straight_05.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:15be927d67876ee93a8a6ec5091bbfa3eb6f74bd063e5452896d4776db68194f -size 1388 +oid sha256:5ce0a9e03fc765786059111a150340638050b3cb1787992fb8cbb0fa8616a442 +size 1389 diff --git a/data/minecraft/structure/village/taiga/streets/straight_06.nbt b/data/minecraft/structure/village/taiga/streets/straight_06.nbt index 69b16279..bcf413b0 100644 --- a/data/minecraft/structure/village/taiga/streets/straight_06.nbt +++ b/data/minecraft/structure/village/taiga/streets/straight_06.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1f203436a78086651dc5f20fe8103205be6a6dacb9f971031eb56c11ad339987 -size 1702 +oid sha256:40294cb6af7efe8c06a3464ebbace260d816e0f791158bd64a8f127654377474 +size 1701 diff --git a/data/minecraft/structure/village/taiga/streets/turn_01.nbt b/data/minecraft/structure/village/taiga/streets/turn_01.nbt index 6629e7b3..3ffce2cc 100644 --- a/data/minecraft/structure/village/taiga/streets/turn_01.nbt +++ b/data/minecraft/structure/village/taiga/streets/turn_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2bc95ba981cc1bd5a068208a0ca5f93435d961cf95d2d88c1de26b3129d7ca02 -size 789 +oid sha256:17ca6da411141b8eb51c0564d8b8d8c6c5326ef244989fdf75207f21d073f6ef +size 788 diff --git a/data/minecraft/structure/village/taiga/taiga_decoration_1.nbt b/data/minecraft/structure/village/taiga/taiga_decoration_1.nbt index 53bd1320..ab1d0172 100644 --- a/data/minecraft/structure/village/taiga/taiga_decoration_1.nbt +++ b/data/minecraft/structure/village/taiga/taiga_decoration_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c70749faf2ee0072d96ece47301f8b19439640c2d756164f5f5394faed851ed4 -size 422 +oid sha256:3cb86f72efb5da8f9cc7fa1f225af0e74df88b68a493515638e52584c4694aa5 +size 421 diff --git a/data/minecraft/structure/village/taiga/taiga_decoration_2.nbt b/data/minecraft/structure/village/taiga/taiga_decoration_2.nbt index ffe7e1ab..65613c43 100644 --- a/data/minecraft/structure/village/taiga/taiga_decoration_2.nbt +++ b/data/minecraft/structure/village/taiga/taiga_decoration_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ec92a4d820fa21d047fedd7551d57183e8ccf62ebe5c4781973bd6b3852fe2ff +oid sha256:cd6568ed99e1147bda6662d2102e4445d6c7c30bdb846d9d17d000fdc21b6d58 size 367 diff --git a/data/minecraft/structure/village/taiga/taiga_decoration_3.nbt b/data/minecraft/structure/village/taiga/taiga_decoration_3.nbt index 9f8afcc8..9abb7541 100644 --- a/data/minecraft/structure/village/taiga/taiga_decoration_3.nbt +++ b/data/minecraft/structure/village/taiga/taiga_decoration_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e792aaf520c9e3ed0e5fde095f3de0a2690ec48531967732901a6aab17b57b4d -size 353 +oid sha256:d8fb0a0f1ea6e489fbc517940021b9dd14ac203af2f70809ba7509f17b4055eb +size 352 diff --git a/data/minecraft/structure/village/taiga/taiga_decoration_4.nbt b/data/minecraft/structure/village/taiga/taiga_decoration_4.nbt index 161295c3..40ae29c5 100644 --- a/data/minecraft/structure/village/taiga/taiga_decoration_4.nbt +++ b/data/minecraft/structure/village/taiga/taiga_decoration_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:34d1d8ef89ec7367c487fa25f6e53969c88fe0c7b421f268d43b782fbdf42156 -size 323 +oid sha256:bfd5101b85a1d8b7a37c15cd50b00ebfe0a004ba2c069b354d63fe62bb1f5376 +size 322 diff --git a/data/minecraft/structure/village/taiga/taiga_decoration_5.nbt b/data/minecraft/structure/village/taiga/taiga_decoration_5.nbt index 24d0695b..59af5fe4 100644 --- a/data/minecraft/structure/village/taiga/taiga_decoration_5.nbt +++ b/data/minecraft/structure/village/taiga/taiga_decoration_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9523519cee735c153ed9d564887ebd63119b3a30d040ac967c4a94ff235ea539 -size 249 +oid sha256:c1f09be1ddaeec646e940f22e76ea90be183198e7a2751badfd4e645dc6395fa +size 248 diff --git a/data/minecraft/structure/village/taiga/taiga_decoration_6.nbt b/data/minecraft/structure/village/taiga/taiga_decoration_6.nbt index ed09e0a2..b81235ef 100644 --- a/data/minecraft/structure/village/taiga/taiga_decoration_6.nbt +++ b/data/minecraft/structure/village/taiga/taiga_decoration_6.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:90397564c3aba9376b5b6df94cb9086b7920799d1ff0c4a871395162ad89c2d5 +oid sha256:7703d93d499202e548f20ea5977032fa8ecde7c0adc21938ddb74c934f1f0df7 size 470 diff --git a/data/minecraft/structure/village/taiga/taiga_lamp_post_1.nbt b/data/minecraft/structure/village/taiga/taiga_lamp_post_1.nbt index fb60d15a..a362f6ea 100644 --- a/data/minecraft/structure/village/taiga/taiga_lamp_post_1.nbt +++ b/data/minecraft/structure/village/taiga/taiga_lamp_post_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:69719a366b2489f1cccf90e920dc6ca611bf2830a86bdb30dc15a35995698233 -size 252 +oid sha256:a9481ff69145be89a12eeb9649e832f876605cf12b628800e95e7246d26e4952 +size 251 diff --git a/data/minecraft/structure/village/taiga/town_centers/taiga_meeting_point_1.nbt b/data/minecraft/structure/village/taiga/town_centers/taiga_meeting_point_1.nbt index 641b20ff..2166346a 100644 --- a/data/minecraft/structure/village/taiga/town_centers/taiga_meeting_point_1.nbt +++ b/data/minecraft/structure/village/taiga/town_centers/taiga_meeting_point_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2e602ab46333e79a6cfb367cd5052291ba877c8c8946b227131445a09c49bce3 -size 3946 +oid sha256:e398d2efdfb416fbfbc1e6552e0944ebe9709157868d9690e086be5938a54225 +size 3945 diff --git a/data/minecraft/structure/village/taiga/town_centers/taiga_meeting_point_2.nbt b/data/minecraft/structure/village/taiga/town_centers/taiga_meeting_point_2.nbt index 3deb93ff..56d41702 100644 --- a/data/minecraft/structure/village/taiga/town_centers/taiga_meeting_point_2.nbt +++ b/data/minecraft/structure/village/taiga/town_centers/taiga_meeting_point_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e4471c683841668f0491bc1f2834306c67836085e2e6a7dad0db7539d6df58b2 -size 2270 +oid sha256:3ee6f4aa0b51f1e159018f036d31fcc9641a05f21ea448185b553a8cfd835602 +size 2269 diff --git a/data/minecraft/structure/village/taiga/villagers/baby.nbt b/data/minecraft/structure/village/taiga/villagers/baby.nbt index 5d0d0741..03f88c95 100644 --- a/data/minecraft/structure/village/taiga/villagers/baby.nbt +++ b/data/minecraft/structure/village/taiga/villagers/baby.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1a5115abfd975404087ba40cbbc6a81f4e058ece64dde38a5d8aeb3e5a8c37e9 -size 719 +oid sha256:595a4acaf0ed0e54341a27cec8516f665cafe88656cf5aba4536977127c22ecf +size 718 diff --git a/data/minecraft/structure/village/taiga/villagers/nitwit.nbt b/data/minecraft/structure/village/taiga/villagers/nitwit.nbt index dc585582..23e08d42 100644 --- a/data/minecraft/structure/village/taiga/villagers/nitwit.nbt +++ b/data/minecraft/structure/village/taiga/villagers/nitwit.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7bdb49f9a42e6fe8d2372afbd708666135870e33bb399ceaf20579f33ab72239 -size 716 +oid sha256:5356ad6d702180ca654a3cc9fbe821dbfc3ed93906d0561bac1ed29a8c233292 +size 715 diff --git a/data/minecraft/structure/village/taiga/villagers/unemployed.nbt b/data/minecraft/structure/village/taiga/villagers/unemployed.nbt index e9970387..8954af37 100644 --- a/data/minecraft/structure/village/taiga/villagers/unemployed.nbt +++ b/data/minecraft/structure/village/taiga/villagers/unemployed.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:84ce11f7d650f6d490346ae997fbed447edce6b382e5102a05868e8db9fb91b5 +oid sha256:127811c44dae638231d331f18fba63e0ce96450cc07195e9fdd888ef3ad6c66e size 714 diff --git a/data/minecraft/structure/village/taiga/zombie/houses/taiga_cartographer_house_1.nbt b/data/minecraft/structure/village/taiga/zombie/houses/taiga_cartographer_house_1.nbt index 24cc65b5..ed874fc7 100644 --- a/data/minecraft/structure/village/taiga/zombie/houses/taiga_cartographer_house_1.nbt +++ b/data/minecraft/structure/village/taiga/zombie/houses/taiga_cartographer_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7939104b114395ed6f1ad5bd440c9fcdbac47b0299f83d4b355d5235d8181240 -size 2613 +oid sha256:c00c6f25ad653628832e62024605545233f25cf219cce233e5bb4e7d8c06937c +size 2612 diff --git a/data/minecraft/structure/village/taiga/zombie/houses/taiga_fisher_cottage_1.nbt b/data/minecraft/structure/village/taiga/zombie/houses/taiga_fisher_cottage_1.nbt index fd4c92d6..64adb2eb 100644 --- a/data/minecraft/structure/village/taiga/zombie/houses/taiga_fisher_cottage_1.nbt +++ b/data/minecraft/structure/village/taiga/zombie/houses/taiga_fisher_cottage_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7f82a85915ca83bc8b746a70f0902725105b8f21654a9a5986afdd29622c9ced -size 3666 +oid sha256:ecd2a118df3f7d8c43ed91226d15db39a7be75fdc8e1542bf78e3d8a72165719 +size 3665 diff --git a/data/minecraft/structure/village/taiga/zombie/houses/taiga_large_farm_2.nbt b/data/minecraft/structure/village/taiga/zombie/houses/taiga_large_farm_2.nbt index b2b93fd8..0ee7923c 100644 --- a/data/minecraft/structure/village/taiga/zombie/houses/taiga_large_farm_2.nbt +++ b/data/minecraft/structure/village/taiga/zombie/houses/taiga_large_farm_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e991be49f51bc5074af77f1e03784327da7d18ccce3c2c9bf34d86506b476b35 -size 1606 +oid sha256:1f0dea14fec57f02cb967f9064867704703ecc67080e528243dfb7dc7689002e +size 1604 diff --git a/data/minecraft/structure/village/taiga/zombie/houses/taiga_library_1.nbt b/data/minecraft/structure/village/taiga/zombie/houses/taiga_library_1.nbt index 8c76f66c..4986bfa8 100644 --- a/data/minecraft/structure/village/taiga/zombie/houses/taiga_library_1.nbt +++ b/data/minecraft/structure/village/taiga/zombie/houses/taiga_library_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:607ccb9650c5ca58ac86f56037ff1569c1a1597e07262bf66db9d6f63b51267b -size 3458 +oid sha256:d7105bde91b3d926381b722deed744f4f5397ced58e55d32c51fcdc7f04c278b +size 3457 diff --git a/data/minecraft/structure/village/taiga/zombie/houses/taiga_medium_house_1.nbt b/data/minecraft/structure/village/taiga/zombie/houses/taiga_medium_house_1.nbt index 12276456..277ce231 100644 --- a/data/minecraft/structure/village/taiga/zombie/houses/taiga_medium_house_1.nbt +++ b/data/minecraft/structure/village/taiga/zombie/houses/taiga_medium_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7210708c22e8346d30993ad53f38f6d13248d12fbc213b0704363414992a92cc -size 2786 +oid sha256:77fe2c424f0518a064f491f9e2849452f1162e54d612b4b584f0e2ddb6319e95 +size 2785 diff --git a/data/minecraft/structure/village/taiga/zombie/houses/taiga_medium_house_2.nbt b/data/minecraft/structure/village/taiga/zombie/houses/taiga_medium_house_2.nbt index 4ebf0451..f6c68f6a 100644 --- a/data/minecraft/structure/village/taiga/zombie/houses/taiga_medium_house_2.nbt +++ b/data/minecraft/structure/village/taiga/zombie/houses/taiga_medium_house_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c9a12e85f02a50f3d7d07399742fc50627e7311c32259dc408a28a750f1823c3 -size 2605 +oid sha256:9cd8243c0e46ad96b0d0b9facca57b26c748eded765b5107eda33b41696473a9 +size 2604 diff --git a/data/minecraft/structure/village/taiga/zombie/houses/taiga_medium_house_3.nbt b/data/minecraft/structure/village/taiga/zombie/houses/taiga_medium_house_3.nbt index 81e3ffe4..cb6f676a 100644 --- a/data/minecraft/structure/village/taiga/zombie/houses/taiga_medium_house_3.nbt +++ b/data/minecraft/structure/village/taiga/zombie/houses/taiga_medium_house_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e2109d6eb0a73de62cc669280cb773f07572aadea34a495d99782eb42d3ae0c7 -size 3069 +oid sha256:f9e73c49e321e2a78ecaa5f3bfec5e3a56b665e5c8d13f5834575e7b25e8af48 +size 3068 diff --git a/data/minecraft/structure/village/taiga/zombie/houses/taiga_medium_house_4.nbt b/data/minecraft/structure/village/taiga/zombie/houses/taiga_medium_house_4.nbt index 3d4751b9..59a80c8b 100644 --- a/data/minecraft/structure/village/taiga/zombie/houses/taiga_medium_house_4.nbt +++ b/data/minecraft/structure/village/taiga/zombie/houses/taiga_medium_house_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e727d69255b103836886bae3eeb9e52cf48124b918c9ece731ac485ccf118784 -size 2710 +oid sha256:3b1d5317b4fb635626ccf3f5443ee6af2e84408044d9a46ac9fbf44a003ce5fe +size 2709 diff --git a/data/minecraft/structure/village/taiga/zombie/houses/taiga_shepherds_house_1.nbt b/data/minecraft/structure/village/taiga/zombie/houses/taiga_shepherds_house_1.nbt index 788ee099..638d7bea 100644 --- a/data/minecraft/structure/village/taiga/zombie/houses/taiga_shepherds_house_1.nbt +++ b/data/minecraft/structure/village/taiga/zombie/houses/taiga_shepherds_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f9d0d3c339f06b84dcedfdb84407ef1624820b795d898f2475f0eb0cb4e2c87f -size 3040 +oid sha256:0366b8824697f465484818b6190d7ad6d0d04927ad0023b9e213ac14042a89c7 +size 3039 diff --git a/data/minecraft/structure/village/taiga/zombie/houses/taiga_small_house_1.nbt b/data/minecraft/structure/village/taiga/zombie/houses/taiga_small_house_1.nbt index 2ccd44fd..7a8be3a1 100644 --- a/data/minecraft/structure/village/taiga/zombie/houses/taiga_small_house_1.nbt +++ b/data/minecraft/structure/village/taiga/zombie/houses/taiga_small_house_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cdcaf4dbed8fbd431ce6ffd5d19849b38ce580c218c2e6c10ebb2f45d4ac259c -size 2380 +oid sha256:06960ef124232b26e8ae6f9956f706e038897e0547a835b4daa6c9f5cec3f813 +size 2379 diff --git a/data/minecraft/structure/village/taiga/zombie/houses/taiga_small_house_2.nbt b/data/minecraft/structure/village/taiga/zombie/houses/taiga_small_house_2.nbt index 5de0f60b..c56375d3 100644 --- a/data/minecraft/structure/village/taiga/zombie/houses/taiga_small_house_2.nbt +++ b/data/minecraft/structure/village/taiga/zombie/houses/taiga_small_house_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:23ea8e1d5d33b21dda43ebaefeeba355131ca4a859ca0cb867907b6260c1776c -size 1795 +oid sha256:793c03fcf2606f351fc74d1bf322c8b93e0088dfd7c1e3ab1ed4328c00082fdf +size 1794 diff --git a/data/minecraft/structure/village/taiga/zombie/houses/taiga_small_house_3.nbt b/data/minecraft/structure/village/taiga/zombie/houses/taiga_small_house_3.nbt index 42cd78fe..36f8f035 100644 --- a/data/minecraft/structure/village/taiga/zombie/houses/taiga_small_house_3.nbt +++ b/data/minecraft/structure/village/taiga/zombie/houses/taiga_small_house_3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d77f30d728f0e5d7ddbc66dd983b5295c3372f4ff943c405d9be48d7905bb126 +oid sha256:36e2176d0f08e33c56000f28518816ec2eec6e7b30661e0f64fc2a43ed08d38c size 1885 diff --git a/data/minecraft/structure/village/taiga/zombie/houses/taiga_small_house_4.nbt b/data/minecraft/structure/village/taiga/zombie/houses/taiga_small_house_4.nbt index 766e9df0..07cbc765 100644 --- a/data/minecraft/structure/village/taiga/zombie/houses/taiga_small_house_4.nbt +++ b/data/minecraft/structure/village/taiga/zombie/houses/taiga_small_house_4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:33c4259369bd4f560e541a6b60cdb88a763195cfd1292ecde80fc1f6c03e13de +oid sha256:b86e6dc67b76ab3ed7587acdefd10098b68234ccfcba39a9a918c21fe2978728 size 1612 diff --git a/data/minecraft/structure/village/taiga/zombie/houses/taiga_small_house_5.nbt b/data/minecraft/structure/village/taiga/zombie/houses/taiga_small_house_5.nbt index cc0d9ec9..a3673220 100644 --- a/data/minecraft/structure/village/taiga/zombie/houses/taiga_small_house_5.nbt +++ b/data/minecraft/structure/village/taiga/zombie/houses/taiga_small_house_5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:90f8f65b19cbb8f78df05202207d1e02de0f8634e025d9b3ec9fda3f966242b8 -size 2048 +oid sha256:d4ef1d9efd1500c8a78844af122b23c2c907fe3f96f41d20bb2306ba704b246c +size 2046 diff --git a/data/minecraft/structure/village/taiga/zombie/houses/taiga_temple_1.nbt b/data/minecraft/structure/village/taiga/zombie/houses/taiga_temple_1.nbt index 449b9a98..2b256169 100644 --- a/data/minecraft/structure/village/taiga/zombie/houses/taiga_temple_1.nbt +++ b/data/minecraft/structure/village/taiga/zombie/houses/taiga_temple_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:76dcdb12604539231fe8389db31100bc6b32b449aaa4d50d8211e95e89c48b5d -size 6643 +oid sha256:f516bb8938d7f0eb944708ebded7e2697ee4b63e6ac541c2d5adb4fbeb4682c9 +size 6641 diff --git a/data/minecraft/structure/village/taiga/zombie/houses/taiga_tool_smith_1.nbt b/data/minecraft/structure/village/taiga/zombie/houses/taiga_tool_smith_1.nbt index 6da7f0d5..b6be8dc5 100644 --- a/data/minecraft/structure/village/taiga/zombie/houses/taiga_tool_smith_1.nbt +++ b/data/minecraft/structure/village/taiga/zombie/houses/taiga_tool_smith_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:16fa81ab85f679d4dd8b6f27a676a30ed67058e55a56324c194a33eb0a3a4302 -size 2174 +oid sha256:4131117abdf7c8ae8c086b5e39b520f374f63d4b164dfdcb8bed702499bff69e +size 2173 diff --git a/data/minecraft/structure/village/taiga/zombie/houses/taiga_weaponsmith_2.nbt b/data/minecraft/structure/village/taiga/zombie/houses/taiga_weaponsmith_2.nbt index 6d77ce37..7166cdc7 100644 --- a/data/minecraft/structure/village/taiga/zombie/houses/taiga_weaponsmith_2.nbt +++ b/data/minecraft/structure/village/taiga/zombie/houses/taiga_weaponsmith_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7e75d5f17e2fb6962bfdfcab14f8f084f815528d6cf9cb910ec98e1b5b8e4fd1 -size 1193 +oid sha256:2eca8dbedd6d91e719640cadeca1771e6724c1bf9bb85e9abc8e618fa8d17957 +size 1192 diff --git a/data/minecraft/structure/village/taiga/zombie/streets/corner_01.nbt b/data/minecraft/structure/village/taiga/zombie/streets/corner_01.nbt index a6446d24..6b24f226 100644 --- a/data/minecraft/structure/village/taiga/zombie/streets/corner_01.nbt +++ b/data/minecraft/structure/village/taiga/zombie/streets/corner_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:379fa937b708d6187e8f2e18d51514691c3cc429366b65ec0e40b20bbe9ed287 -size 1186 +oid sha256:20d23159482505c620bb09cadf6256714a8d15ac1d5f6bcda9a867d5392d3df8 +size 1185 diff --git a/data/minecraft/structure/village/taiga/zombie/streets/corner_02.nbt b/data/minecraft/structure/village/taiga/zombie/streets/corner_02.nbt index 07c6d4f4..34799dd0 100644 --- a/data/minecraft/structure/village/taiga/zombie/streets/corner_02.nbt +++ b/data/minecraft/structure/village/taiga/zombie/streets/corner_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a37ba581a26b6e331fd0dbba89b8b01f33539c708c871ffcf045cec3231aed37 -size 1190 +oid sha256:36f3d8f7936f9a6410835c7ba0c99c1f855021da661b4c57fc31dda7f631d2a7 +size 1189 diff --git a/data/minecraft/structure/village/taiga/zombie/streets/corner_03.nbt b/data/minecraft/structure/village/taiga/zombie/streets/corner_03.nbt index 9f0ed066..6a27f9ed 100644 --- a/data/minecraft/structure/village/taiga/zombie/streets/corner_03.nbt +++ b/data/minecraft/structure/village/taiga/zombie/streets/corner_03.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:819dc649440c151b38fae89024e94c456842b765a04c3a20b96eb289108541fd -size 355 +oid sha256:16d50f6e76d0338cff83536600d505751cf773f9039c36e71bd9ebea3fde094c +size 353 diff --git a/data/minecraft/structure/village/taiga/zombie/streets/crossroad_01.nbt b/data/minecraft/structure/village/taiga/zombie/streets/crossroad_01.nbt index 8d6070ce..8fa72ad2 100644 --- a/data/minecraft/structure/village/taiga/zombie/streets/crossroad_01.nbt +++ b/data/minecraft/structure/village/taiga/zombie/streets/crossroad_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c70bc0ad6e253e030bf5eb9b2c62566368a1578fabe0d392743498a77b9831d0 -size 1219 +oid sha256:3059faa7a4deed70b1b6af25103475686c4dce5a2922e6a6178c2a0f844fcc07 +size 1218 diff --git a/data/minecraft/structure/village/taiga/zombie/streets/crossroad_02.nbt b/data/minecraft/structure/village/taiga/zombie/streets/crossroad_02.nbt index 2337c1ce..d320c224 100644 --- a/data/minecraft/structure/village/taiga/zombie/streets/crossroad_02.nbt +++ b/data/minecraft/structure/village/taiga/zombie/streets/crossroad_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ad06263bdf62491e2f5e0efb1953544e5001635eb1022251bf38c0aa9d4e3282 -size 1164 +oid sha256:54c1b920326196b2b7e6db78e56ee2c16232ef598d6bbc9759175ac1ce2715e3 +size 1163 diff --git a/data/minecraft/structure/village/taiga/zombie/streets/crossroad_03.nbt b/data/minecraft/structure/village/taiga/zombie/streets/crossroad_03.nbt index daa2fe01..8a2c572d 100644 --- a/data/minecraft/structure/village/taiga/zombie/streets/crossroad_03.nbt +++ b/data/minecraft/structure/village/taiga/zombie/streets/crossroad_03.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:457a1d8886b8f380cae97a1532bfaeb849eb7ab699e8118e8d5f790843f74568 -size 1207 +oid sha256:78fb29e2058cbb7e9cb18c014c81d5df3553ebeb7f158e3b2c1f328013886a1c +size 1206 diff --git a/data/minecraft/structure/village/taiga/zombie/streets/crossroad_04.nbt b/data/minecraft/structure/village/taiga/zombie/streets/crossroad_04.nbt index a5589ef7..8e341dd9 100644 --- a/data/minecraft/structure/village/taiga/zombie/streets/crossroad_04.nbt +++ b/data/minecraft/structure/village/taiga/zombie/streets/crossroad_04.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c4c0c8697ceac724826fdc008f9a06de6e746263aa6499a4f9c0c605d8ea9a4c -size 444 +oid sha256:dcce77ea92b07ca8b9a7d875abe33f6d0d741c05c7b050885b9321cadd886323 +size 443 diff --git a/data/minecraft/structure/village/taiga/zombie/streets/crossroad_05.nbt b/data/minecraft/structure/village/taiga/zombie/streets/crossroad_05.nbt index 24469abd..603954ea 100644 --- a/data/minecraft/structure/village/taiga/zombie/streets/crossroad_05.nbt +++ b/data/minecraft/structure/village/taiga/zombie/streets/crossroad_05.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:627395b8efaec00c13625759b3a4c1f3b78b49132ae857d687bc534b3fc9d776 -size 413 +oid sha256:529bf579b49b474ea5683c844369cb911af3a6472fca1ed2ed024c2075beda17 +size 412 diff --git a/data/minecraft/structure/village/taiga/zombie/streets/crossroad_06.nbt b/data/minecraft/structure/village/taiga/zombie/streets/crossroad_06.nbt index 7a53b2db..eb327580 100644 --- a/data/minecraft/structure/village/taiga/zombie/streets/crossroad_06.nbt +++ b/data/minecraft/structure/village/taiga/zombie/streets/crossroad_06.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7d8e7bccb080a42a04e7ca41f90da1357a436b301c009b8e7bb74dbff6958344 -size 475 +oid sha256:885d21400f52de0f3bd3ce38681f939bb39887e75eeb96b7c4fa9c99bbcc5baf +size 474 diff --git a/data/minecraft/structure/village/taiga/zombie/streets/straight_01.nbt b/data/minecraft/structure/village/taiga/zombie/streets/straight_01.nbt index f9bfd963..0b64383c 100644 --- a/data/minecraft/structure/village/taiga/zombie/streets/straight_01.nbt +++ b/data/minecraft/structure/village/taiga/zombie/streets/straight_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a3a2e8fbcd73b7d2f624aefedd155b7103d834f2c0609329d0ad9e372c303037 -size 1134 +oid sha256:5f6848dd2bbdc18c377ec516b350d6c86a8a8931b14b598b6d175d0ce3744873 +size 1133 diff --git a/data/minecraft/structure/village/taiga/zombie/streets/straight_02.nbt b/data/minecraft/structure/village/taiga/zombie/streets/straight_02.nbt index 8bcbdfa7..c17b9708 100644 --- a/data/minecraft/structure/village/taiga/zombie/streets/straight_02.nbt +++ b/data/minecraft/structure/village/taiga/zombie/streets/straight_02.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:99efc48da60c033f8c7a2a35b9c3baa38d0c20a7d0aec60b16b44b899527b537 -size 1151 +oid sha256:3db02957a6bf3d5247fb38958d49e8de34f701bf165a854e946763b6f9760ae1 +size 1150 diff --git a/data/minecraft/structure/village/taiga/zombie/streets/straight_03.nbt b/data/minecraft/structure/village/taiga/zombie/streets/straight_03.nbt index 7c50071b..2c285668 100644 --- a/data/minecraft/structure/village/taiga/zombie/streets/straight_03.nbt +++ b/data/minecraft/structure/village/taiga/zombie/streets/straight_03.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:25f41bf9c3868c272afd79f69bde757dd5ac6c7c78d2209237daa02c44e5079f -size 780 +oid sha256:eeaa2cb35360fe6ea376a57b8a690dafdbe5a7db1477e6976bde3685a8162435 +size 779 diff --git a/data/minecraft/structure/village/taiga/zombie/streets/straight_04.nbt b/data/minecraft/structure/village/taiga/zombie/streets/straight_04.nbt index af8e0b65..ed27fdd9 100644 --- a/data/minecraft/structure/village/taiga/zombie/streets/straight_04.nbt +++ b/data/minecraft/structure/village/taiga/zombie/streets/straight_04.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:375a137ff42e2f69324dfd1c6228e2d9bf2ba2a414c33c3ba15c0bcc7833ef05 -size 690 +oid sha256:17edf8272089520bee902178e8a13eef5a834e9fa7e91c93eff640705241ff3d +size 691 diff --git a/data/minecraft/structure/village/taiga/zombie/streets/straight_05.nbt b/data/minecraft/structure/village/taiga/zombie/streets/straight_05.nbt index 08139f51..330b40a6 100644 --- a/data/minecraft/structure/village/taiga/zombie/streets/straight_05.nbt +++ b/data/minecraft/structure/village/taiga/zombie/streets/straight_05.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b3153e73f6092a91a374bfc1c9c3284a898193d39f0726888b8c74aa9fd16e04 -size 1393 +oid sha256:b7e10b6c6b65358f0aea76212ef29c83f08ac55214137c0e940389fb4a3b338a +size 1394 diff --git a/data/minecraft/structure/village/taiga/zombie/streets/straight_06.nbt b/data/minecraft/structure/village/taiga/zombie/streets/straight_06.nbt index 24e0846c..32b9bab7 100644 --- a/data/minecraft/structure/village/taiga/zombie/streets/straight_06.nbt +++ b/data/minecraft/structure/village/taiga/zombie/streets/straight_06.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:55a8141c8f56aac94caa6dc927aa52e7b47bab25268c1b9ddbbd3eab1adeb9b3 -size 1707 +oid sha256:1dcbc99105e43d6ace8b0d1828dcad33f32ad699510fb191e19a4a1746c2ee36 +size 1706 diff --git a/data/minecraft/structure/village/taiga/zombie/streets/turn_01.nbt b/data/minecraft/structure/village/taiga/zombie/streets/turn_01.nbt index 02697f08..c017486f 100644 --- a/data/minecraft/structure/village/taiga/zombie/streets/turn_01.nbt +++ b/data/minecraft/structure/village/taiga/zombie/streets/turn_01.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4b090a840d9b21b6f72d978a96cca56011b5330a8be6e0ccb51916c9edd77ad1 -size 793 +oid sha256:29f0a0b191797cf7614a790a56e23b07146ef21fcd43d9f9189c9aeccebccb10 +size 792 diff --git a/data/minecraft/structure/village/taiga/zombie/town_centers/taiga_meeting_point_1.nbt b/data/minecraft/structure/village/taiga/zombie/town_centers/taiga_meeting_point_1.nbt index 837e3847..e766d773 100644 --- a/data/minecraft/structure/village/taiga/zombie/town_centers/taiga_meeting_point_1.nbt +++ b/data/minecraft/structure/village/taiga/zombie/town_centers/taiga_meeting_point_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:07c9bea57640fd086d11f373a79540f8dd9a299832b2a4ef1aa99ed55f80ffe3 -size 1848 +oid sha256:b63a2987151ffe2ec79b5c306e04813d3ce9ff472e33009d9f657913142c803b +size 1847 diff --git a/data/minecraft/structure/village/taiga/zombie/town_centers/taiga_meeting_point_2.nbt b/data/minecraft/structure/village/taiga/zombie/town_centers/taiga_meeting_point_2.nbt index 94cbbbf4..6495e305 100644 --- a/data/minecraft/structure/village/taiga/zombie/town_centers/taiga_meeting_point_2.nbt +++ b/data/minecraft/structure/village/taiga/zombie/town_centers/taiga_meeting_point_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dab5c81f89effb0d4b015323271b9210c7053ee26586072f6d2301d620b6d19b -size 2257 +oid sha256:33585d6548454ab9aa52b1ff7b6f8f57232901d3931906e2bfc4347eb969c9c9 +size 2256 diff --git a/data/minecraft/structure/village/taiga/zombie/villagers/nitwit.nbt b/data/minecraft/structure/village/taiga/zombie/villagers/nitwit.nbt index 5f4b641d..3ef7fb75 100644 --- a/data/minecraft/structure/village/taiga/zombie/villagers/nitwit.nbt +++ b/data/minecraft/structure/village/taiga/zombie/villagers/nitwit.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:911c7de45fe81b2747c03f204f7203da7d0a92dabd28789d43e993684942b50a -size 721 +oid sha256:531fec9af3cd4dac749f7353eb609ebd3fa691f8435f9e028dcf4288ca812a57 +size 722 diff --git a/data/minecraft/structure/village/taiga/zombie/villagers/unemployed.nbt b/data/minecraft/structure/village/taiga/zombie/villagers/unemployed.nbt index 0408eac6..2fc3e6e5 100644 --- a/data/minecraft/structure/village/taiga/zombie/villagers/unemployed.nbt +++ b/data/minecraft/structure/village/taiga/zombie/villagers/unemployed.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3d1e96ce32f263c51b530d8c1de257af2fdef3b9426412cf3e58ece79d686d31 +oid sha256:2f1843ca21a551e8902a760250da280fe5d9ab4e2363d1111b2734d440c9e040 size 720 diff --git a/data/minecraft/structure/woodland_mansion/1x1_a1.nbt b/data/minecraft/structure/woodland_mansion/1x1_a1.nbt index 22d37e80..a8828dc2 100644 --- a/data/minecraft/structure/woodland_mansion/1x1_a1.nbt +++ b/data/minecraft/structure/woodland_mansion/1x1_a1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:30fc085e2602d29ec3c86428c2a1cae0c535396133f5b813d7ed840aacd1ff90 -size 1433 +oid sha256:0cdf43fc56877ea601b9c0097222601ab8fb17f94bfaea71c9da296944335a96 +size 1432 diff --git a/data/minecraft/structure/woodland_mansion/1x1_a2.nbt b/data/minecraft/structure/woodland_mansion/1x1_a2.nbt index 55b15f64..a5120586 100644 --- a/data/minecraft/structure/woodland_mansion/1x1_a2.nbt +++ b/data/minecraft/structure/woodland_mansion/1x1_a2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9c81813e448b2c967393942e60d36bb4dfe438ff9a7b0fee6e102c71158b1e23 -size 1529 +oid sha256:caad95cb44e4e1f06889656b04222e6833c49ba0fe64c4475cbab0e2dadc0029 +size 1528 diff --git a/data/minecraft/structure/woodland_mansion/1x1_a3.nbt b/data/minecraft/structure/woodland_mansion/1x1_a3.nbt index 06840c77..6704d44c 100644 --- a/data/minecraft/structure/woodland_mansion/1x1_a3.nbt +++ b/data/minecraft/structure/woodland_mansion/1x1_a3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c931d03b27717a54566f6cbd6d57361556df853cb7e26c1cd45227713f8f3775 -size 1416 +oid sha256:4148eb7f25b8273567b226edd264a6e61d44b1060d78e3b9adc02f75d0c5e99a +size 1415 diff --git a/data/minecraft/structure/woodland_mansion/1x1_a4.nbt b/data/minecraft/structure/woodland_mansion/1x1_a4.nbt index 8cc29bfd..ab56fa37 100644 --- a/data/minecraft/structure/woodland_mansion/1x1_a4.nbt +++ b/data/minecraft/structure/woodland_mansion/1x1_a4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:641be1513f23ec9a47b53f25ebf84f1b18df7dc7303ad48980d0b3a4834e5023 +oid sha256:095a9fd429b30be5b7d7c9c23ac63693bf5b0e812deeba2efa9c858ffb1cea43 size 1682 diff --git a/data/minecraft/structure/woodland_mansion/1x1_a5.nbt b/data/minecraft/structure/woodland_mansion/1x1_a5.nbt index 7802d48e..8eae7c3b 100644 --- a/data/minecraft/structure/woodland_mansion/1x1_a5.nbt +++ b/data/minecraft/structure/woodland_mansion/1x1_a5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:32a81e4f0bf0b480fc33e5793735140019960e4a0b3865e0aac491385ab5d5ac -size 1491 +oid sha256:7f73b1dfe10a39839a3149a5e8c330dab5541c6396c184e8414cbd9cbe2ef829 +size 1490 diff --git a/data/minecraft/structure/woodland_mansion/1x1_as1.nbt b/data/minecraft/structure/woodland_mansion/1x1_as1.nbt index 8e116628..ca067fd9 100644 --- a/data/minecraft/structure/woodland_mansion/1x1_as1.nbt +++ b/data/minecraft/structure/woodland_mansion/1x1_as1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:57d614e1936f00e03ebffb3e3667da35b9a5dc464c063a3226ecc9cfd852403e +oid sha256:6628b39e8fea89bc222e3fca82baf4d9d15d26cc0c0a989a565bd3138f22e9ee size 1485 diff --git a/data/minecraft/structure/woodland_mansion/1x1_as2.nbt b/data/minecraft/structure/woodland_mansion/1x1_as2.nbt index 29677a7d..747bd2c5 100644 --- a/data/minecraft/structure/woodland_mansion/1x1_as2.nbt +++ b/data/minecraft/structure/woodland_mansion/1x1_as2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a4e2957e9d978dd1078f3a66a15bf7159ce554e595ad752fae9e147ee33e18ac -size 1455 +oid sha256:72ed2c9f05c6372a1136cf87666244062add24921575658d85d2c38d5cc055d9 +size 1454 diff --git a/data/minecraft/structure/woodland_mansion/1x1_as3.nbt b/data/minecraft/structure/woodland_mansion/1x1_as3.nbt index 76c2bfa5..2642f33a 100644 --- a/data/minecraft/structure/woodland_mansion/1x1_as3.nbt +++ b/data/minecraft/structure/woodland_mansion/1x1_as3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3faf7f43803b8b83d3762d1b7ab3f760cb87fd9767de324e8b759f3d9f42e38c -size 1211 +oid sha256:27238524936247464c2e0753cdbedbb0cfcb6bc292e4b7357d7f83eb553a1348 +size 1210 diff --git a/data/minecraft/structure/woodland_mansion/1x1_as4.nbt b/data/minecraft/structure/woodland_mansion/1x1_as4.nbt index 501974d2..3765a83e 100644 --- a/data/minecraft/structure/woodland_mansion/1x1_as4.nbt +++ b/data/minecraft/structure/woodland_mansion/1x1_as4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:51b8da8442d15ba74e924cc9153e6c02d6cfb50ba44be77eb965576ffac9b228 -size 1211 +oid sha256:8a57a892b6f7adff71649b30404532d19a008443bdcc486f293cb321be5ecce2 +size 1210 diff --git a/data/minecraft/structure/woodland_mansion/1x1_b1.nbt b/data/minecraft/structure/woodland_mansion/1x1_b1.nbt index 22678bbb..21916634 100644 --- a/data/minecraft/structure/woodland_mansion/1x1_b1.nbt +++ b/data/minecraft/structure/woodland_mansion/1x1_b1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3ad57ef49e68fba2629442d619052f41dbc3024eccef6c7dedfa5b3a828b18c0 -size 1924 +oid sha256:a33a97d7017a6664841e9ab76841c56edfaee877e2e8dbdde4f59a169fefa56b +size 1923 diff --git a/data/minecraft/structure/woodland_mansion/1x1_b2.nbt b/data/minecraft/structure/woodland_mansion/1x1_b2.nbt index 700ecc16..3efc019b 100644 --- a/data/minecraft/structure/woodland_mansion/1x1_b2.nbt +++ b/data/minecraft/structure/woodland_mansion/1x1_b2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8597e782fbedaf4855487219cf2ea063b90cef4a2176bec0d86888daf47e16ed -size 1864 +oid sha256:44b8193229f46dbb48f0e14358ea948788e03cbeae59716eab8481fac7c3ac4c +size 1863 diff --git a/data/minecraft/structure/woodland_mansion/1x1_b3.nbt b/data/minecraft/structure/woodland_mansion/1x1_b3.nbt index 3dea311e..87732d10 100644 --- a/data/minecraft/structure/woodland_mansion/1x1_b3.nbt +++ b/data/minecraft/structure/woodland_mansion/1x1_b3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4b04d61a057a55ca471dee35538e656670288229f2e004528a4b1ed680618a64 +oid sha256:ef667ada1e5c8a73bf89fa9f8628140e95b5d8939a55a379dee629afe67d40d1 size 1806 diff --git a/data/minecraft/structure/woodland_mansion/1x1_b4.nbt b/data/minecraft/structure/woodland_mansion/1x1_b4.nbt index dfc51068..cf38304f 100644 --- a/data/minecraft/structure/woodland_mansion/1x1_b4.nbt +++ b/data/minecraft/structure/woodland_mansion/1x1_b4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6ff15e16b363e729f6600cc5bb755a54fbfb5102e672c6c6a8136a249f15c3f2 -size 1831 +oid sha256:11b6ab14490df8fff11f9b2a4a0616d5c6304771a7ed4748d13a45374c711577 +size 1830 diff --git a/data/minecraft/structure/woodland_mansion/1x1_b5.nbt b/data/minecraft/structure/woodland_mansion/1x1_b5.nbt index 85578a80..e3bee6ff 100644 --- a/data/minecraft/structure/woodland_mansion/1x1_b5.nbt +++ b/data/minecraft/structure/woodland_mansion/1x1_b5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:18ab6c1f256187672b0047f5df0f7260fd0b6dc08d74b361c8e8e566e89ac268 -size 1921 +oid sha256:9ed2ae36be72e943e468f392a1a597dcdf1cebc7f72a866af8d8b0a199ab6c05 +size 1920 diff --git a/data/minecraft/structure/woodland_mansion/1x2_a1.nbt b/data/minecraft/structure/woodland_mansion/1x2_a1.nbt index fee7dbcb..471d4c68 100644 --- a/data/minecraft/structure/woodland_mansion/1x2_a1.nbt +++ b/data/minecraft/structure/woodland_mansion/1x2_a1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f50d8cf78aba3811535a088440bf3f00dd28ae93922f373159cbc765c4168a1a +oid sha256:7fe0291f97144232ed093b1e846bc6c4fb7ad53864c2921b4b31b9147b830879 size 2936 diff --git a/data/minecraft/structure/woodland_mansion/1x2_a2.nbt b/data/minecraft/structure/woodland_mansion/1x2_a2.nbt index c656e789..e446b3f9 100644 --- a/data/minecraft/structure/woodland_mansion/1x2_a2.nbt +++ b/data/minecraft/structure/woodland_mansion/1x2_a2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:51a81f1e0973086e4c70131b68d9aba1ae2d02f44ddbdef4e381fb176a33dd06 -size 2829 +oid sha256:f35b854f997ba544f325a9766840b451853b01c1320b7a373e86e82bb1befe4e +size 2828 diff --git a/data/minecraft/structure/woodland_mansion/1x2_a3.nbt b/data/minecraft/structure/woodland_mansion/1x2_a3.nbt index bec87870..5477f926 100644 --- a/data/minecraft/structure/woodland_mansion/1x2_a3.nbt +++ b/data/minecraft/structure/woodland_mansion/1x2_a3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:41f831ea329bc7f3e87836069aa247af5b5071a2e8961c4bdb0fc4eeb7023ec1 +oid sha256:7c1e1fd7086c343e05f79f387368c0e55cc84a908e92e0583298f7103fac8ace size 2950 diff --git a/data/minecraft/structure/woodland_mansion/1x2_a4.nbt b/data/minecraft/structure/woodland_mansion/1x2_a4.nbt index 82bbb3c6..f7a19e50 100644 --- a/data/minecraft/structure/woodland_mansion/1x2_a4.nbt +++ b/data/minecraft/structure/woodland_mansion/1x2_a4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f90fa12c5010cd4b6472d433834555850d34415f683c0183f6e63ece0257a86a -size 2897 +oid sha256:1486a6d2b56597ad0e38df7fc7fda8e3c46ec80f577175523422a91b7fc219b2 +size 2896 diff --git a/data/minecraft/structure/woodland_mansion/1x2_a5.nbt b/data/minecraft/structure/woodland_mansion/1x2_a5.nbt index 05914767..49626080 100644 --- a/data/minecraft/structure/woodland_mansion/1x2_a5.nbt +++ b/data/minecraft/structure/woodland_mansion/1x2_a5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:825d26fbc73ef10a53c63a6e9daa7ac5f7e0251ca5baf126e1e2e69940551cea -size 2570 +oid sha256:2cc8fe35311eb362804d70362f23f4d305db028fb64aeca8211d9c6f651cebf3 +size 2569 diff --git a/data/minecraft/structure/woodland_mansion/1x2_a6.nbt b/data/minecraft/structure/woodland_mansion/1x2_a6.nbt index aef611a1..33b39294 100644 --- a/data/minecraft/structure/woodland_mansion/1x2_a6.nbt +++ b/data/minecraft/structure/woodland_mansion/1x2_a6.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6fda3b7b1da3daadf6f7055169cd528a96ee6c581ef7e9725ca34793288deab3 -size 2809 +oid sha256:5a7cb0985ee2b490eac6237e3b2ab8a66a920c385c01a847c275e7f469a8f202 +size 2808 diff --git a/data/minecraft/structure/woodland_mansion/1x2_a7.nbt b/data/minecraft/structure/woodland_mansion/1x2_a7.nbt index 096faa7d..6893ca35 100644 --- a/data/minecraft/structure/woodland_mansion/1x2_a7.nbt +++ b/data/minecraft/structure/woodland_mansion/1x2_a7.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e0da8d39d40197a23869d8b10cd7305b8167072341c14d0cd7e9ba1dd609cd32 -size 2948 +oid sha256:84c7ec5da449bf3d4651e22219a134f03d99e7955c6676f5382c124e878366ae +size 2947 diff --git a/data/minecraft/structure/woodland_mansion/1x2_a8.nbt b/data/minecraft/structure/woodland_mansion/1x2_a8.nbt index 5f769231..b58acbe9 100644 --- a/data/minecraft/structure/woodland_mansion/1x2_a8.nbt +++ b/data/minecraft/structure/woodland_mansion/1x2_a8.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:77d2814c077c4fcf63526126a952e17544522bb7b8c5df46f5cc9f3048c993bc +oid sha256:06473395d9c3f7f07a14da42e79816b7b957d06b7e6d58f483bd3cfea4d1c1f3 size 3189 diff --git a/data/minecraft/structure/woodland_mansion/1x2_a9.nbt b/data/minecraft/structure/woodland_mansion/1x2_a9.nbt index 42c8880f..805bad0f 100644 --- a/data/minecraft/structure/woodland_mansion/1x2_a9.nbt +++ b/data/minecraft/structure/woodland_mansion/1x2_a9.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:034272acd79ac4183c8279a8b018eea38e8cc93585c16fa2d53b845ae4f7cc30 +oid sha256:1fc9d6d2796842d35ceb3c054e7e76dafc9883dedfd215cf7a06377ae501db50 size 3094 diff --git a/data/minecraft/structure/woodland_mansion/1x2_b1.nbt b/data/minecraft/structure/woodland_mansion/1x2_b1.nbt index 8df3b95d..889f3db2 100644 --- a/data/minecraft/structure/woodland_mansion/1x2_b1.nbt +++ b/data/minecraft/structure/woodland_mansion/1x2_b1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7288cfa3a0bdb9b4214eb6298e65de1794780333efd1e09f030cc9023ead16f8 +oid sha256:86b2f02a028fe3334081b0de2c0fb17f37acf078fddcd0b3b62e6de5068ef3bc size 3276 diff --git a/data/minecraft/structure/woodland_mansion/1x2_b2.nbt b/data/minecraft/structure/woodland_mansion/1x2_b2.nbt index dc566f28..0f1ee600 100644 --- a/data/minecraft/structure/woodland_mansion/1x2_b2.nbt +++ b/data/minecraft/structure/woodland_mansion/1x2_b2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cc989762aff480d116619e5f325388ae96b7f2c4bc426f4b81827a7477849b18 +oid sha256:e68f3a6f955b9441adc74c583e8e9361988479bd96f748a2939020feacc9fbe2 size 3133 diff --git a/data/minecraft/structure/woodland_mansion/1x2_b3.nbt b/data/minecraft/structure/woodland_mansion/1x2_b3.nbt index 2fa89afa..94998126 100644 --- a/data/minecraft/structure/woodland_mansion/1x2_b3.nbt +++ b/data/minecraft/structure/woodland_mansion/1x2_b3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6b373e149458c3429f837588b326ea6ac9397f820b0ce2e30b7702c1a9d9c407 +oid sha256:6134421827f340a1b36f9dfa522bb95d1db6ac47c32bffedb583f988f62249fb size 2793 diff --git a/data/minecraft/structure/woodland_mansion/1x2_b4.nbt b/data/minecraft/structure/woodland_mansion/1x2_b4.nbt index a767c48e..14894e50 100644 --- a/data/minecraft/structure/woodland_mansion/1x2_b4.nbt +++ b/data/minecraft/structure/woodland_mansion/1x2_b4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c462389ff550a1056bc22e9160f07852addbad92e60a0999e2f62ad864faf1fb +oid sha256:70462b58154a56df16dee576b2c70bc5eeef98619318faf1ec8e4a1412843508 size 2963 diff --git a/data/minecraft/structure/woodland_mansion/1x2_b5.nbt b/data/minecraft/structure/woodland_mansion/1x2_b5.nbt index 6be9dc4f..52d5a76f 100644 --- a/data/minecraft/structure/woodland_mansion/1x2_b5.nbt +++ b/data/minecraft/structure/woodland_mansion/1x2_b5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1a7b20e3c481bea79525372aee4d834cf2504368d123f0ec8fd0bf274056c528 -size 2408 +oid sha256:913ea2ec7a271d99c41d0cd092dfa7e687cc6f2e9d739781314e699e853a8d81 +size 2407 diff --git a/data/minecraft/structure/woodland_mansion/1x2_c1.nbt b/data/minecraft/structure/woodland_mansion/1x2_c1.nbt index 1e87f111..344fce95 100644 --- a/data/minecraft/structure/woodland_mansion/1x2_c1.nbt +++ b/data/minecraft/structure/woodland_mansion/1x2_c1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ed07d85d9c6cd5ada34765dfd7e423ce407087061292b02de24c27f7763a9828 -size 3546 +oid sha256:41f7b5073c65c389ff9f729516f6890ddb2567cb26ab308fd083d8f99049b79d +size 3545 diff --git a/data/minecraft/structure/woodland_mansion/1x2_c2.nbt b/data/minecraft/structure/woodland_mansion/1x2_c2.nbt index dfd7e250..9fcb75df 100644 --- a/data/minecraft/structure/woodland_mansion/1x2_c2.nbt +++ b/data/minecraft/structure/woodland_mansion/1x2_c2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b68f5a48e3f208a7ee073ace841deddbd552c3f11a67bb06b643cfe3383026d2 -size 3348 +oid sha256:038ec8c50617e28fc2107a0e994ea4cf643dd2ce422f7c2862040dbd0d811dd0 +size 3347 diff --git a/data/minecraft/structure/woodland_mansion/1x2_c3.nbt b/data/minecraft/structure/woodland_mansion/1x2_c3.nbt index dbebcf5d..bbb27637 100644 --- a/data/minecraft/structure/woodland_mansion/1x2_c3.nbt +++ b/data/minecraft/structure/woodland_mansion/1x2_c3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e835443af0b54156663af8a1a3a3c69052a1011a2a747f83c18a469918ad123d +oid sha256:6a136fa1bcbff97fe0c8895f15821fbba3e4a22b3ad6a8d3032ec675af9920e7 size 3616 diff --git a/data/minecraft/structure/woodland_mansion/1x2_c4.nbt b/data/minecraft/structure/woodland_mansion/1x2_c4.nbt index e1e26b01..be391662 100644 --- a/data/minecraft/structure/woodland_mansion/1x2_c4.nbt +++ b/data/minecraft/structure/woodland_mansion/1x2_c4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:27db53573f4cfee8eef4f0c9a211d22c4d2f191270db2fbe30a6fa225e614312 -size 3620 +oid sha256:ddd4fa8b2651dcaa6fad780f69f27f1d6a75c8860f043a1fcb9cb55193e7dbca +size 3619 diff --git a/data/minecraft/structure/woodland_mansion/1x2_c_stairs.nbt b/data/minecraft/structure/woodland_mansion/1x2_c_stairs.nbt index 4e72b32a..4c9b34d9 100644 --- a/data/minecraft/structure/woodland_mansion/1x2_c_stairs.nbt +++ b/data/minecraft/structure/woodland_mansion/1x2_c_stairs.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:68775cd27d80ac84586cae584ebf427b1c3b65695bc48a23757f0e495116e96c -size 6730 +oid sha256:c29ee05f950de3457e6bdd94fc002f3a43171048801cd8e920c5aef30b57de2b +size 6729 diff --git a/data/minecraft/structure/woodland_mansion/1x2_d1.nbt b/data/minecraft/structure/woodland_mansion/1x2_d1.nbt index fee22c31..4f311b3b 100644 --- a/data/minecraft/structure/woodland_mansion/1x2_d1.nbt +++ b/data/minecraft/structure/woodland_mansion/1x2_d1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:59a980ac4eea30d98090555de0d903155677787b33035d7340e4803a4be99126 +oid sha256:3d752d692ee631ec551f969f77f7cbec78f5e05bb1ac456e5e3a46027fdf7ecf size 3732 diff --git a/data/minecraft/structure/woodland_mansion/1x2_d2.nbt b/data/minecraft/structure/woodland_mansion/1x2_d2.nbt index 993394ac..8de01749 100644 --- a/data/minecraft/structure/woodland_mansion/1x2_d2.nbt +++ b/data/minecraft/structure/woodland_mansion/1x2_d2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4f081449340e4e0ed039f0734086d68b380db87e80554d9f5f5e428db6ab8c2b +oid sha256:7f82bf1dfd640ed2e9814a1a2f2e8762a94487f7b687ec0226fe9a6d207113c2 size 3905 diff --git a/data/minecraft/structure/woodland_mansion/1x2_d3.nbt b/data/minecraft/structure/woodland_mansion/1x2_d3.nbt index 7454e158..d5ce3ae4 100644 --- a/data/minecraft/structure/woodland_mansion/1x2_d3.nbt +++ b/data/minecraft/structure/woodland_mansion/1x2_d3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:83f4a950a9b3aba3a38b8d6a12adae867ea8bdf40653b83d31b949d49a8b7c56 +oid sha256:2f27b007df52f636903f23dcc621b12e6f5582a592ab9efc34f7dc95d4262e36 size 3843 diff --git a/data/minecraft/structure/woodland_mansion/1x2_d4.nbt b/data/minecraft/structure/woodland_mansion/1x2_d4.nbt index 07ad78c8..4f5f6afd 100644 --- a/data/minecraft/structure/woodland_mansion/1x2_d4.nbt +++ b/data/minecraft/structure/woodland_mansion/1x2_d4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d83cdf6cd704dce05e54274a3ff2ba6facf9a7a0c734ea185b5b2c4f36ab2032 -size 3409 +oid sha256:9d3d3f7e790d082ad18c975fe212ad82d7d7c4289595fabed103bf1f13391852 +size 3408 diff --git a/data/minecraft/structure/woodland_mansion/1x2_d5.nbt b/data/minecraft/structure/woodland_mansion/1x2_d5.nbt index 3f2f168d..a641c421 100644 --- a/data/minecraft/structure/woodland_mansion/1x2_d5.nbt +++ b/data/minecraft/structure/woodland_mansion/1x2_d5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a280364193ff6fa7668f661a3ccaf977e1901421116bbd376099ab8895ba511e -size 3373 +oid sha256:0fe916970a0a0e1588ae5f73c536f4c08a3e4578f75e09b52ad94ea61ab0cf4a +size 3372 diff --git a/data/minecraft/structure/woodland_mansion/1x2_d_stairs.nbt b/data/minecraft/structure/woodland_mansion/1x2_d_stairs.nbt index a16bb823..f8f282a3 100644 --- a/data/minecraft/structure/woodland_mansion/1x2_d_stairs.nbt +++ b/data/minecraft/structure/woodland_mansion/1x2_d_stairs.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b5bbe6e6ebd47d0e7bde444ce19bb66259a2843a2fa56d89dfd46bf8c6857496 -size 6625 +oid sha256:79a8af7558990fa2efd067a4b2da10fa141557d9fe7dc47bffbe61690a5a9edd +size 6624 diff --git a/data/minecraft/structure/woodland_mansion/1x2_s1.nbt b/data/minecraft/structure/woodland_mansion/1x2_s1.nbt index 8001045d..2a8a7616 100644 --- a/data/minecraft/structure/woodland_mansion/1x2_s1.nbt +++ b/data/minecraft/structure/woodland_mansion/1x2_s1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9ebe3a10619bc4fee67e883a5cc1ebabdcedc29309f9aad41c3040f6317db639 +oid sha256:ac18702c6c52c132e89e12318e18435846c28802d1cb0cfc051027ef32859b91 size 2686 diff --git a/data/minecraft/structure/woodland_mansion/1x2_s2.nbt b/data/minecraft/structure/woodland_mansion/1x2_s2.nbt index a03c4dd2..f6171029 100644 --- a/data/minecraft/structure/woodland_mansion/1x2_s2.nbt +++ b/data/minecraft/structure/woodland_mansion/1x2_s2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2c9e80a4834a17002e1cdaf06be4c493edcb8bb012b25cf832a7f262f3b33f59 -size 2732 +oid sha256:ec04c76f92ce9075d446612a1ab389f74e65daae9715a6e93f6e443a81ae875e +size 2731 diff --git a/data/minecraft/structure/woodland_mansion/1x2_se1.nbt b/data/minecraft/structure/woodland_mansion/1x2_se1.nbt index 22f54171..bd430b8b 100644 --- a/data/minecraft/structure/woodland_mansion/1x2_se1.nbt +++ b/data/minecraft/structure/woodland_mansion/1x2_se1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:beeecde93028fe7b44d3e0e8a9f49e11a66508493d443806f9bb5f5a732e5619 +oid sha256:6981bbe629a0d356645fd82ac379d3eedf0677d48e47b236f860a2a3ede672b9 size 3883 diff --git a/data/minecraft/structure/woodland_mansion/2x2_a1.nbt b/data/minecraft/structure/woodland_mansion/2x2_a1.nbt index b3a30a7d..8c87a3cb 100644 --- a/data/minecraft/structure/woodland_mansion/2x2_a1.nbt +++ b/data/minecraft/structure/woodland_mansion/2x2_a1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c05d9a34aeeedae051887883703a5801feb723f70ad057dae1a2635dddcb6c0b +oid sha256:11a818ecc89bc84dca1375a42c2e26751c1c11f4ca1708214304f6befb70bf8c size 6288 diff --git a/data/minecraft/structure/woodland_mansion/2x2_a2.nbt b/data/minecraft/structure/woodland_mansion/2x2_a2.nbt index 9afe8c17..48ab9f8e 100644 --- a/data/minecraft/structure/woodland_mansion/2x2_a2.nbt +++ b/data/minecraft/structure/woodland_mansion/2x2_a2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bd288b30ff8e231cfc0f71972e6b24a3119c714f39eb5cae92f34bfa15f22867 +oid sha256:f6cc9d01a716edf412ee5f99ba7b7df008a5c2be9c561788577069a7755d0bdb size 5632 diff --git a/data/minecraft/structure/woodland_mansion/2x2_a3.nbt b/data/minecraft/structure/woodland_mansion/2x2_a3.nbt index 630c57ce..012a46d7 100644 --- a/data/minecraft/structure/woodland_mansion/2x2_a3.nbt +++ b/data/minecraft/structure/woodland_mansion/2x2_a3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3acc230a932ac22d798d3212e2734d3aca28990f6eef3ee29f594f0fdbb17c4c +oid sha256:27775458dd2fc175cb551270368656b565eb4a6a4d4359bb441384f8f159c105 size 5213 diff --git a/data/minecraft/structure/woodland_mansion/2x2_a4.nbt b/data/minecraft/structure/woodland_mansion/2x2_a4.nbt index a947c469..e4e543e8 100644 --- a/data/minecraft/structure/woodland_mansion/2x2_a4.nbt +++ b/data/minecraft/structure/woodland_mansion/2x2_a4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:335668135cac0fe5d5cb4b84ce5bdae960e4128ace7b3d5c10988f32bf4caa35 -size 5410 +oid sha256:67f44f5fdb1956229b48f885d5973b072d24ee8bc4bce75e73b092717c423846 +size 5409 diff --git a/data/minecraft/structure/woodland_mansion/2x2_b1.nbt b/data/minecraft/structure/woodland_mansion/2x2_b1.nbt index baf5858b..cfc1de89 100644 --- a/data/minecraft/structure/woodland_mansion/2x2_b1.nbt +++ b/data/minecraft/structure/woodland_mansion/2x2_b1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2cdf47d68dbd984643c11a5942f519e3e6262aecdb4075ec593d4a1a5b2196f0 +oid sha256:1483578508108263a4a5212044b2e0bd05c431e9cb5eb6d2d3462ad5b260461e size 7312 diff --git a/data/minecraft/structure/woodland_mansion/2x2_b2.nbt b/data/minecraft/structure/woodland_mansion/2x2_b2.nbt index a29c3d89..3b44af26 100644 --- a/data/minecraft/structure/woodland_mansion/2x2_b2.nbt +++ b/data/minecraft/structure/woodland_mansion/2x2_b2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c91363addedd601cbfbcb3e8ab1174746aaf399ad5084c1aaad46b21809837cc +oid sha256:9bbd5c7b26fd87362c3bb28162c8d2307909f841a249a704b102c418684af447 size 7299 diff --git a/data/minecraft/structure/woodland_mansion/2x2_b3.nbt b/data/minecraft/structure/woodland_mansion/2x2_b3.nbt index aa28c516..c6c12aac 100644 --- a/data/minecraft/structure/woodland_mansion/2x2_b3.nbt +++ b/data/minecraft/structure/woodland_mansion/2x2_b3.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9da20cb654069d39211c880de11c5b8185ab0f810397fc7435dec6bab6771ec5 -size 7104 +oid sha256:bde325fcdc66930b325f7a3918cf22d27ab5d7f64abede65aabe082f5679f92e +size 7103 diff --git a/data/minecraft/structure/woodland_mansion/2x2_b4.nbt b/data/minecraft/structure/woodland_mansion/2x2_b4.nbt index ad67849c..cf3f008e 100644 --- a/data/minecraft/structure/woodland_mansion/2x2_b4.nbt +++ b/data/minecraft/structure/woodland_mansion/2x2_b4.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:07700e8ef7e04c3ea4b52457c7dafdfcef2379e037122c5d0715662d71dd300a +oid sha256:e472e36e48c0a6ec73abcf4c95cd3e74768e943a04cf54c1491bce86a17d76f5 size 7240 diff --git a/data/minecraft/structure/woodland_mansion/2x2_b5.nbt b/data/minecraft/structure/woodland_mansion/2x2_b5.nbt index 81e9a3ff..2e6c2afd 100644 --- a/data/minecraft/structure/woodland_mansion/2x2_b5.nbt +++ b/data/minecraft/structure/woodland_mansion/2x2_b5.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fd41644cf3a97446c4587805dffb3aec375d4e401c3b1aae0fdf04eba8395318 +oid sha256:6d9703e5664bc6b950598be048149709d511f001517a3c4a53c0ee42a91e10d9 size 7542 diff --git a/data/minecraft/structure/woodland_mansion/2x2_s1.nbt b/data/minecraft/structure/woodland_mansion/2x2_s1.nbt index 1273ddb5..5d1fce68 100644 --- a/data/minecraft/structure/woodland_mansion/2x2_s1.nbt +++ b/data/minecraft/structure/woodland_mansion/2x2_s1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:df60baff1b156b1963e92cefadef789d18198a9b869fc96e450ee8da1d969d78 -size 6794 +oid sha256:157d632e14e6c9d16342747c5fbce2257f4de56d7b521214fe44c766638172f0 +size 6793 diff --git a/data/minecraft/structure/woodland_mansion/carpet_east.nbt b/data/minecraft/structure/woodland_mansion/carpet_east.nbt index 82426c70..8c9c5072 100644 --- a/data/minecraft/structure/woodland_mansion/carpet_east.nbt +++ b/data/minecraft/structure/woodland_mansion/carpet_east.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:08fbc4e268c00af246da4d09f1483b944b73ef144542fe41b78c91151ab788ac -size 179 +oid sha256:df65f91b05dbf3943a55c72b0dc9454117a132084d53d3ebb8056aad504f924e +size 178 diff --git a/data/minecraft/structure/woodland_mansion/carpet_north.nbt b/data/minecraft/structure/woodland_mansion/carpet_north.nbt index 12a4dd49..fdb833e3 100644 --- a/data/minecraft/structure/woodland_mansion/carpet_north.nbt +++ b/data/minecraft/structure/woodland_mansion/carpet_north.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a6f00d122f3d5e423296063e8b075c990e20e42b50e111d529841bc73678b16d -size 176 +oid sha256:80a713ccda6cd0060689391fdbf43ffe94f75be15e20f42f2c792631f4d2c4e5 +size 175 diff --git a/data/minecraft/structure/woodland_mansion/carpet_south_1.nbt b/data/minecraft/structure/woodland_mansion/carpet_south_1.nbt index 53f9e4cf..7575b803 100644 --- a/data/minecraft/structure/woodland_mansion/carpet_south_1.nbt +++ b/data/minecraft/structure/woodland_mansion/carpet_south_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1a49b4c43f3d41d8fb1de869a87872e77566e417361655ae2f84bec4e4f0552a -size 720 +oid sha256:9d9f08f36330b59b7d17c5102ec577e432a693edce3e1202a590945381d4d65f +size 719 diff --git a/data/minecraft/structure/woodland_mansion/carpet_south_2.nbt b/data/minecraft/structure/woodland_mansion/carpet_south_2.nbt index 3d684eaf..4e3fdb30 100644 --- a/data/minecraft/structure/woodland_mansion/carpet_south_2.nbt +++ b/data/minecraft/structure/woodland_mansion/carpet_south_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7e6db28b7807fb93964deffe6a294eb9e7fabab133f65a72d171dd2ffc75ec37 -size 929 +oid sha256:d9fa3ba42461fe1f16f020ee17a421657a376466ca92a47e78e854b0a2e1ff2e +size 928 diff --git a/data/minecraft/structure/woodland_mansion/carpet_west_1.nbt b/data/minecraft/structure/woodland_mansion/carpet_west_1.nbt index 0cbfbb7b..679752f1 100644 --- a/data/minecraft/structure/woodland_mansion/carpet_west_1.nbt +++ b/data/minecraft/structure/woodland_mansion/carpet_west_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5b2bea87e3b0859c4c11d6946b15b2d729357034007adf9dd6a48c2df7131bd9 -size 793 +oid sha256:2fef1db07ff4f8215081fabc841199f35a38dd0849c61a444b818aa4524d2c71 +size 792 diff --git a/data/minecraft/structure/woodland_mansion/carpet_west_2.nbt b/data/minecraft/structure/woodland_mansion/carpet_west_2.nbt index badaff67..01241fb1 100644 --- a/data/minecraft/structure/woodland_mansion/carpet_west_2.nbt +++ b/data/minecraft/structure/woodland_mansion/carpet_west_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fb4fd8527774388cfd389881569e8a6491e48c30d5af96cff87127ac4af74e5d -size 1021 +oid sha256:dc840e6ec631da1af6634d32d21b74ad46a8a6d623263b10647a8993be7ce7b2 +size 1020 diff --git a/data/minecraft/structure/woodland_mansion/corridor_floor.nbt b/data/minecraft/structure/woodland_mansion/corridor_floor.nbt index e23e25bf..217de60d 100644 --- a/data/minecraft/structure/woodland_mansion/corridor_floor.nbt +++ b/data/minecraft/structure/woodland_mansion/corridor_floor.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a452ba6e9ad42febd527b491fe74d096eeafbcf9187151669a344a7b993d9464 -size 1171 +oid sha256:0fc362732e8094429977cb117f7b1bb081c06133d10871b4180559c3daa9ff2b +size 1170 diff --git a/data/minecraft/structure/woodland_mansion/entrance.nbt b/data/minecraft/structure/woodland_mansion/entrance.nbt index 8f3a0b9e..d4010125 100644 --- a/data/minecraft/structure/woodland_mansion/entrance.nbt +++ b/data/minecraft/structure/woodland_mansion/entrance.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:169872472b3c5f5d069346921102559ab41b33634e3263eae905310bab3c541b -size 18255 +oid sha256:5aff92cbb25bf3dc1173b6e54b6ebcf28853e8eb952cc337899f437e5ff45779 +size 18254 diff --git a/data/minecraft/structure/woodland_mansion/indoors_door_1.nbt b/data/minecraft/structure/woodland_mansion/indoors_door_1.nbt index 452b3df0..6596f591 100644 --- a/data/minecraft/structure/woodland_mansion/indoors_door_1.nbt +++ b/data/minecraft/structure/woodland_mansion/indoors_door_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a0d5162136ffc136fd3faa0f981a6f46a3ad5b65630f8de5fac520a6284e0f0b -size 409 +oid sha256:335e3d128afd6210167e487fb9c4dafce2f104bd1d28c1b280a9ece0aa681080 +size 408 diff --git a/data/minecraft/structure/woodland_mansion/indoors_door_2.nbt b/data/minecraft/structure/woodland_mansion/indoors_door_2.nbt index 0af9243e..8137501b 100644 --- a/data/minecraft/structure/woodland_mansion/indoors_door_2.nbt +++ b/data/minecraft/structure/woodland_mansion/indoors_door_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c25a5e8830ce1e0e4e74cbe6c981acc71068005e7f3a8b5ad170509df4cf7e55 +oid sha256:1df98ddc7576c9730d2529e972ec62ed23d78f5d9a8d9f58a22ed9989d78aff7 size 503 diff --git a/data/minecraft/structure/woodland_mansion/indoors_wall_1.nbt b/data/minecraft/structure/woodland_mansion/indoors_wall_1.nbt index c63f7213..90b2a8ee 100644 --- a/data/minecraft/structure/woodland_mansion/indoors_wall_1.nbt +++ b/data/minecraft/structure/woodland_mansion/indoors_wall_1.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:30adab67da4aafd2bd9280e8463c8d009caed93cd7297c7c402bdc47f9a24db1 +oid sha256:285697f923b94b6100d3ac49f471a01f058745d981b6b30cea920b5bc13486f5 size 364 diff --git a/data/minecraft/structure/woodland_mansion/indoors_wall_2.nbt b/data/minecraft/structure/woodland_mansion/indoors_wall_2.nbt index d503ab77..242ba9ef 100644 --- a/data/minecraft/structure/woodland_mansion/indoors_wall_2.nbt +++ b/data/minecraft/structure/woodland_mansion/indoors_wall_2.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:35ec0f67ebcd9b86804a9611bef82283dc87bc84a11146efcd18d4797634c263 +oid sha256:8392f1a833c7ed947fa5d5729aa1de27d369a8e61fa2d85594397b9a0790e0f9 size 440 diff --git a/data/minecraft/structure/woodland_mansion/roof.nbt b/data/minecraft/structure/woodland_mansion/roof.nbt index f19e361a..92eafc3e 100644 --- a/data/minecraft/structure/woodland_mansion/roof.nbt +++ b/data/minecraft/structure/woodland_mansion/roof.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5b6895ab28e4b40cb61ebebbd9005a5ca91a2e89a9198952d25ff71eb3b77202 -size 332 +oid sha256:a0b9829eb7bb5d1e7fd4f739e0319dd55c0cedf7a4a7d6e36f5cd1dab99a9f3f +size 331 diff --git a/data/minecraft/structure/woodland_mansion/roof_corner.nbt b/data/minecraft/structure/woodland_mansion/roof_corner.nbt index 15e150cd..02955201 100644 --- a/data/minecraft/structure/woodland_mansion/roof_corner.nbt +++ b/data/minecraft/structure/woodland_mansion/roof_corner.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7302ed3a9e568c2a6abc68b70658177495aafeacfaeb177cb727472bf76729fa -size 449 +oid sha256:37180af557ba24703c2769411bb5c25007e05830c9fcb2c37ede111274122153 +size 448 diff --git a/data/minecraft/structure/woodland_mansion/roof_front.nbt b/data/minecraft/structure/woodland_mansion/roof_front.nbt index 7e801ee1..31f41e84 100644 --- a/data/minecraft/structure/woodland_mansion/roof_front.nbt +++ b/data/minecraft/structure/woodland_mansion/roof_front.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:033aa00a09f50487fc63d80c46662e1765798dd212d86e7262dd302988c27cd8 -size 636 +oid sha256:0f295398e7742b1e67eeba177be3101361001f5db9287db85827150aa586c866 +size 635 diff --git a/data/minecraft/structure/woodland_mansion/roof_inner_corner.nbt b/data/minecraft/structure/woodland_mansion/roof_inner_corner.nbt index e71e12d7..157146a6 100644 --- a/data/minecraft/structure/woodland_mansion/roof_inner_corner.nbt +++ b/data/minecraft/structure/woodland_mansion/roof_inner_corner.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f902e970ecfc8c690dc164e64982e6f629f50a18d51657bb0c3e0fa97ce06b46 -size 444 +oid sha256:4feaa3b42fba97a1113d2e435b791d30105ff56de218e628fdb1fb498f3cb44f +size 443 diff --git a/data/minecraft/structure/woodland_mansion/small_wall.nbt b/data/minecraft/structure/woodland_mansion/small_wall.nbt index 16875754..dc221bf4 100644 --- a/data/minecraft/structure/woodland_mansion/small_wall.nbt +++ b/data/minecraft/structure/woodland_mansion/small_wall.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1a9f887c3cb6d26a811ae3a6152c8f60f533ff8c86a4b4d46125e38d45444f47 +oid sha256:10eaee8f28ae3ffb68bc5b335876ce476b5fd67c9d037c63ba9b45e783000f62 size 510 diff --git a/data/minecraft/structure/woodland_mansion/small_wall_corner.nbt b/data/minecraft/structure/woodland_mansion/small_wall_corner.nbt index 99d4873d..e8dc32b7 100644 --- a/data/minecraft/structure/woodland_mansion/small_wall_corner.nbt +++ b/data/minecraft/structure/woodland_mansion/small_wall_corner.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9e30baaf45530a649e7c25aaec054ef418b25526368b5291fe7c410edf004f5d -size 261 +oid sha256:e49d3c0b8e37bbc5c2a64f52cfe1ccce08232a1d56bc71d4b713139ef41a741c +size 260 diff --git a/data/minecraft/structure/woodland_mansion/wall_corner.nbt b/data/minecraft/structure/woodland_mansion/wall_corner.nbt index f1da1131..3711a28a 100644 --- a/data/minecraft/structure/woodland_mansion/wall_corner.nbt +++ b/data/minecraft/structure/woodland_mansion/wall_corner.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:104f61e84833729743b7b8c6759f8c4d38862c3375069e32abc17f0988589cce +oid sha256:e51091a67b23873e78352449245321fbfbc2e0081a38960e63f6375be8732995 size 307 diff --git a/data/minecraft/structure/woodland_mansion/wall_flat.nbt b/data/minecraft/structure/woodland_mansion/wall_flat.nbt index 51fbb84a..c9aa0b6a 100644 --- a/data/minecraft/structure/woodland_mansion/wall_flat.nbt +++ b/data/minecraft/structure/woodland_mansion/wall_flat.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d3a39093b86ad20f49a0e8e3ec00558afa4aeae842f9f93f03af374ee24e7225 -size 726 +oid sha256:debbeb1801067e0eadc7a7aba012a4a0664d9e46e67bb1b05f34c8b07c4cda92 +size 725 diff --git a/data/minecraft/structure/woodland_mansion/wall_window.nbt b/data/minecraft/structure/woodland_mansion/wall_window.nbt index c3aeb7bc..853d5bc9 100644 --- a/data/minecraft/structure/woodland_mansion/wall_window.nbt +++ b/data/minecraft/structure/woodland_mansion/wall_window.nbt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4ba650eb7d2711e8001971f23218fd9210bf64875d72978d9286f6675a916670 -size 829 +oid sha256:e6b962b85279ba783e9de836c3d7a6daefc2ae789e60181791ef7dc32a32b764 +size 828 diff --git a/net/minecraft/DetectedVersion.java b/net/minecraft/DetectedVersion.java index d848763e..49b28d9b 100644 --- a/net/minecraft/DetectedVersion.java +++ b/net/minecraft/DetectedVersion.java @@ -20,7 +20,7 @@ public class DetectedVersion { private static WorldVersion createFromConstants() { return new Simple( - UUID.randomUUID().toString().replaceAll("-", ""), "1.21.8", new DataVersion(4440, "main"), SharedConstants.getProtocolVersion(), 64, 81, new Date(), true + UUID.randomUUID().toString().replaceAll("-", ""), "1.21.7", new DataVersion(4438, "main"), SharedConstants.getProtocolVersion(), 64, 81, new Date(), true ); } diff --git a/net/minecraft/SharedConstants.java b/net/minecraft/SharedConstants.java index 12794bf1..4102e667 100644 --- a/net/minecraft/SharedConstants.java +++ b/net/minecraft/SharedConstants.java @@ -34,7 +34,7 @@ public class SharedConstants { * @deprecated Use {@link #getCurrentVersion()} and {@link com.mojang.bridge.game.GameVersion#getWorldVersion()} instead. */ @Deprecated - public static final int WORLD_VERSION = 4440; + public static final int WORLD_VERSION = 4438; @Deprecated public static final String SERIES = "main"; /** @@ -44,7 +44,7 @@ public class SharedConstants { * @deprecated Use {@link #getCurrentVersion()} and {@link com.mojang.bridge.game.GameVersion#getName()} instead. */ @Deprecated - public static final String VERSION_STRING = "1.21.8"; + public static final String VERSION_STRING = "1.21.7"; /** * The numeric format number for the networking protocol used by the release target of this game version. * @@ -66,7 +66,7 @@ public class SharedConstants { * @deprecated Use {@link #getProtocolVersion()} instead. */ @Deprecated - public static final int SNAPSHOT_NETWORK_PROTOCOL_VERSION = 259; + public static final int SNAPSHOT_NETWORK_PROTOCOL_VERSION = 258; public static final int SNBT_NAG_VERSION = 4420; /** * The bit in the networking protocol version for denoting {@linkplain #SNAPSHOT snapshot versions}. diff --git a/net/minecraft/client/data/models/model/ItemModelUtils.java b/net/minecraft/client/data/models/model/ItemModelUtils.java index 2cbeb42e..7abed64a 100644 --- a/net/minecraft/client/data/models/model/ItemModelUtils.java +++ b/net/minecraft/client/data/models/model/ItemModelUtils.java @@ -3,14 +3,18 @@ package net.minecraft.client.data.models.model; import java.util.List; import java.util.Map; import java.util.Optional; +import java.util.Map.Entry; import net.fabricmc.api.EnvType; import net.fabricmc.api.Environment; import net.minecraft.client.color.item.Constant; import net.minecraft.client.color.item.ItemTintSource; -import net.minecraft.client.renderer.item.ItemModel.Unbaked; -import net.minecraft.client.renderer.item.RangeSelectItemModel.Entry; -import net.minecraft.client.renderer.item.SelectItemModel.SwitchCase; -import net.minecraft.client.renderer.item.SelectItemModel.UnbakedSwitch; +import net.minecraft.client.renderer.item.BlockModelWrapper; +import net.minecraft.client.renderer.item.CompositeModel; +import net.minecraft.client.renderer.item.ConditionalItemModel; +import net.minecraft.client.renderer.item.ItemModel; +import net.minecraft.client.renderer.item.RangeSelectItemModel; +import net.minecraft.client.renderer.item.SelectItemModel; +import net.minecraft.client.renderer.item.SpecialModelWrapper; import net.minecraft.client.renderer.item.properties.conditional.ConditionalItemModelProperty; import net.minecraft.client.renderer.item.properties.conditional.HasComponent; import net.minecraft.client.renderer.item.properties.conditional.IsUsingItem; @@ -19,6 +23,7 @@ import net.minecraft.client.renderer.item.properties.select.ContextDimension; import net.minecraft.client.renderer.item.properties.select.ItemBlockState; import net.minecraft.client.renderer.item.properties.select.LocalTime; import net.minecraft.client.renderer.item.properties.select.SelectItemModelProperty; +import net.minecraft.client.renderer.special.SpecialModelRenderer; import net.minecraft.core.component.DataComponentType; import net.minecraft.resources.ResourceLocation; import net.minecraft.world.level.Level; @@ -26,78 +31,80 @@ import net.minecraft.world.level.block.state.properties.Property; @Environment(EnvType.CLIENT) public class ItemModelUtils { - public static Unbaked plainModel(ResourceLocation model) { - return new net.minecraft.client.renderer.item.BlockModelWrapper.Unbaked(model, List.of()); + public static ItemModel.Unbaked plainModel(ResourceLocation model) { + return new BlockModelWrapper.Unbaked(model, List.of()); } - public static Unbaked tintedModel(ResourceLocation model, ItemTintSource... tintSources) { - return new net.minecraft.client.renderer.item.BlockModelWrapper.Unbaked(model, List.of(tintSources)); + public static ItemModel.Unbaked tintedModel(ResourceLocation model, ItemTintSource... tintSources) { + return new BlockModelWrapper.Unbaked(model, List.of(tintSources)); } public static ItemTintSource constantTint(int value) { return new Constant(value); } - public static Unbaked composite(Unbaked... models) { - return new net.minecraft.client.renderer.item.CompositeModel.Unbaked(List.of(models)); + public static ItemModel.Unbaked composite(ItemModel.Unbaked... models) { + return new CompositeModel.Unbaked(List.of(models)); } - public static Unbaked specialModel(ResourceLocation base, net.minecraft.client.renderer.special.SpecialModelRenderer.Unbaked specialModel) { - return new net.minecraft.client.renderer.item.SpecialModelWrapper.Unbaked(base, specialModel); + public static ItemModel.Unbaked specialModel(ResourceLocation base, SpecialModelRenderer.Unbaked specialModel) { + return new SpecialModelWrapper.Unbaked(base, specialModel); } - public static Entry override(Unbaked model, float threshold) { - return new Entry(threshold, model); + public static RangeSelectItemModel.Entry override(ItemModel.Unbaked threshold, float model) { + return new RangeSelectItemModel.Entry(model, threshold); } - public static Unbaked rangeSelect(RangeSelectItemModelProperty property, Unbaked fallback, Entry... entries) { - return new net.minecraft.client.renderer.item.RangeSelectItemModel.Unbaked(property, 1.0F, List.of(entries), Optional.of(fallback)); + public static ItemModel.Unbaked rangeSelect(RangeSelectItemModelProperty property, ItemModel.Unbaked fallback, RangeSelectItemModel.Entry... entries) { + return new RangeSelectItemModel.Unbaked(property, 1.0F, List.of(entries), Optional.of(fallback)); } - public static Unbaked rangeSelect(RangeSelectItemModelProperty property, float scale, Unbaked fallback, Entry... entries) { - return new net.minecraft.client.renderer.item.RangeSelectItemModel.Unbaked(property, scale, List.of(entries), Optional.of(fallback)); + public static ItemModel.Unbaked rangeSelect( + RangeSelectItemModelProperty property, float scale, ItemModel.Unbaked fallback, RangeSelectItemModel.Entry... entries + ) { + return new RangeSelectItemModel.Unbaked(property, scale, List.of(entries), Optional.of(fallback)); } - public static Unbaked rangeSelect(RangeSelectItemModelProperty property, Unbaked fallback, List entries) { - return new net.minecraft.client.renderer.item.RangeSelectItemModel.Unbaked(property, 1.0F, entries, Optional.of(fallback)); + public static ItemModel.Unbaked rangeSelect(RangeSelectItemModelProperty property, ItemModel.Unbaked fallback, List entries) { + return new RangeSelectItemModel.Unbaked(property, 1.0F, entries, Optional.of(fallback)); } - public static Unbaked rangeSelect(RangeSelectItemModelProperty property, List entries) { - return new net.minecraft.client.renderer.item.RangeSelectItemModel.Unbaked(property, 1.0F, entries, Optional.empty()); + public static ItemModel.Unbaked rangeSelect(RangeSelectItemModelProperty property, List entries) { + return new RangeSelectItemModel.Unbaked(property, 1.0F, entries, Optional.empty()); } - public static Unbaked rangeSelect(RangeSelectItemModelProperty property, float scale, List entries) { - return new net.minecraft.client.renderer.item.RangeSelectItemModel.Unbaked(property, scale, entries, Optional.empty()); + public static ItemModel.Unbaked rangeSelect(RangeSelectItemModelProperty property, float scale, List entries) { + return new RangeSelectItemModel.Unbaked(property, scale, entries, Optional.empty()); } - public static Unbaked conditional(ConditionalItemModelProperty property, Unbaked onTrue, Unbaked onFalse) { - return new net.minecraft.client.renderer.item.ConditionalItemModel.Unbaked(property, onTrue, onFalse); + public static ItemModel.Unbaked conditional(ConditionalItemModelProperty property, ItemModel.Unbaked onTrue, ItemModel.Unbaked onFalse) { + return new ConditionalItemModel.Unbaked(property, onTrue, onFalse); } - public static SwitchCase when(T value, Unbaked model) { - return new SwitchCase<>(List.of(value), model); + public static SelectItemModel.SwitchCase when(T value, ItemModel.Unbaked model) { + return new SelectItemModel.SwitchCase<>(List.of(value), model); } - public static SwitchCase when(List values, Unbaked model) { - return new SwitchCase<>(values, model); + public static SelectItemModel.SwitchCase when(List values, ItemModel.Unbaked model) { + return new SelectItemModel.SwitchCase<>(values, model); } @SafeVarargs - public static Unbaked select(SelectItemModelProperty property, Unbaked fallback, SwitchCase... cases) { + public static ItemModel.Unbaked select(SelectItemModelProperty property, ItemModel.Unbaked fallback, SelectItemModel.SwitchCase... cases) { return select(property, fallback, List.of(cases)); } - public static Unbaked select(SelectItemModelProperty property, Unbaked fallback, List> cases) { - return new net.minecraft.client.renderer.item.SelectItemModel.Unbaked(new UnbakedSwitch<>(property, cases), Optional.of(fallback)); + public static ItemModel.Unbaked select(SelectItemModelProperty property, ItemModel.Unbaked fallback, List> cases) { + return new SelectItemModel.Unbaked(new SelectItemModel.UnbakedSwitch<>(property, cases), Optional.of(fallback)); } @SafeVarargs - public static Unbaked select(SelectItemModelProperty property, SwitchCase... cases) { + public static ItemModel.Unbaked select(SelectItemModelProperty property, SelectItemModel.SwitchCase... cases) { return select(property, List.of(cases)); } - public static Unbaked select(SelectItemModelProperty property, List> cases) { - return new net.minecraft.client.renderer.item.SelectItemModel.Unbaked(new UnbakedSwitch<>(property, cases), Optional.empty()); + public static ItemModel.Unbaked select(SelectItemModelProperty property, List> cases) { + return new SelectItemModel.Unbaked(new SelectItemModel.UnbakedSwitch<>(property, cases), Optional.empty()); } public static ConditionalItemModelProperty isUsingItem() { @@ -108,19 +115,21 @@ public class ItemModelUtils { return new HasComponent(componentType, false); } - public static Unbaked inOverworld(Unbaked inOverworldModel, Unbaked notInOverworldModel) { + public static ItemModel.Unbaked inOverworld(ItemModel.Unbaked inOverworldModel, ItemModel.Unbaked notInOverworldModel) { return select(new ContextDimension(), notInOverworldModel, when(Level.OVERWORLD, inOverworldModel)); } - public static > Unbaked selectBlockItemProperty(Property property, Unbaked fallback, Map modelMap) { - List> list = modelMap.entrySet().stream().sorted(java.util.Map.Entry.comparingByKey()).map(entry -> { + public static > ItemModel.Unbaked selectBlockItemProperty( + Property property, ItemModel.Unbaked fallback, Map modelMap + ) { + List> list = modelMap.entrySet().stream().sorted(Entry.comparingByKey()).map(entry -> { String string = property.getName((T)entry.getKey()); - return new SwitchCase(List.of(string), (Unbaked)entry.getValue()); + return new SelectItemModel.SwitchCase(List.of(string), (ItemModel.Unbaked)entry.getValue()); }).toList(); return select(new ItemBlockState(property.getName()), fallback, list); } - public static Unbaked isXmas(Unbaked xmasModel, Unbaked normalModel) { + public static ItemModel.Unbaked isXmas(ItemModel.Unbaked xmasModel, ItemModel.Unbaked normalModel) { return select(LocalTime.create("MM-dd", "", Optional.empty()), normalModel, List.of(when(List.of("12-24", "12-25", "12-26"), xmasModel))); } } diff --git a/net/minecraft/client/gui/components/AbstractWidget.java b/net/minecraft/client/gui/components/AbstractWidget.java index 008c920f..05695aa3 100644 --- a/net/minecraft/client/gui/components/AbstractWidget.java +++ b/net/minecraft/client/gui/components/AbstractWidget.java @@ -14,7 +14,6 @@ import net.minecraft.client.gui.layouts.LayoutElement; import net.minecraft.client.gui.narration.NarratableEntry; import net.minecraft.client.gui.narration.NarratedElementType; import net.minecraft.client.gui.narration.NarrationElementOutput; -import net.minecraft.client.gui.narration.NarratableEntry.NarrationPriority; import net.minecraft.client.gui.navigation.FocusNavigationEvent; import net.minecraft.client.gui.navigation.ScreenRectangle; import net.minecraft.client.resources.sounds.SimpleSoundInstance; @@ -105,9 +104,9 @@ public abstract class AbstractWidget implements Renderable, GuiEventListener, La } } - protected void renderScrollingString(GuiGraphics guiGraphics, Font font, int padding, int color) { - int i = this.getX() + padding; - int j = this.getX() + this.getWidth() - padding; + protected void renderScrollingString(GuiGraphics guiGraphics, Font font, int width, int color) { + int i = this.getX() + width; + int j = this.getX() + this.getWidth() - width; renderScrollingString(guiGraphics, font, this.getMessage(), i, this.getY(), j, this.getY() + this.getHeight(), color); } @@ -234,11 +233,11 @@ public abstract class AbstractWidget implements Renderable, GuiEventListener, La } @Override - public NarrationPriority narrationPriority() { + public NarratableEntry.NarrationPriority narrationPriority() { if (this.isFocused()) { - return NarrationPriority.FOCUSED; + return NarratableEntry.NarrationPriority.FOCUSED; } else { - return this.isHovered ? NarrationPriority.HOVERED : NarrationPriority.NONE; + return this.isHovered ? NarratableEntry.NarrationPriority.HOVERED : NarratableEntry.NarrationPriority.NONE; } } diff --git a/net/minecraft/client/gui/components/PlayerSkinWidget.java b/net/minecraft/client/gui/components/PlayerSkinWidget.java index f733d08d..c9554dd6 100644 --- a/net/minecraft/client/gui/components/PlayerSkinWidget.java +++ b/net/minecraft/client/gui/components/PlayerSkinWidget.java @@ -11,7 +11,6 @@ import net.minecraft.client.model.PlayerModel; import net.minecraft.client.model.geom.EntityModelSet; import net.minecraft.client.model.geom.ModelLayers; import net.minecraft.client.resources.PlayerSkin; -import net.minecraft.client.resources.PlayerSkin.Model; import net.minecraft.client.sounds.SoundManager; import net.minecraft.network.chat.CommonComponents; import net.minecraft.util.Mth; @@ -43,7 +42,7 @@ public class PlayerSkinWidget extends AbstractWidget { float f = 0.97F * this.getHeight() / 2.125F; float g = -1.0625F; PlayerSkin playerSkin = (PlayerSkin)this.skin.get(); - PlayerModel playerModel = playerSkin.model() == Model.SLIM ? this.slimModel : this.wideModel; + PlayerModel playerModel = playerSkin.model() == PlayerSkin.Model.SLIM ? this.slimModel : this.wideModel; guiGraphics.submitSkinRenderState( playerModel, playerSkin.texture(), f, this.rotationX, this.rotationY, -1.0625F, this.getX(), this.getY(), this.getRight(), this.getBottom() ); diff --git a/net/minecraft/client/gui/render/GuiRenderer.java b/net/minecraft/client/gui/render/GuiRenderer.java index 8a1a2bd0..729220d8 100644 --- a/net/minecraft/client/gui/render/GuiRenderer.java +++ b/net/minecraft/client/gui/render/GuiRenderer.java @@ -42,10 +42,8 @@ import java.util.function.Supplier; import net.fabricmc.api.EnvType; import net.fabricmc.api.Environment; import net.minecraft.client.Minecraft; -import net.minecraft.client.gui.Font.GlyphVisitor; +import net.minecraft.client.gui.Font; import net.minecraft.client.gui.font.glyphs.BakedGlyph; -import net.minecraft.client.gui.font.glyphs.BakedGlyph.Effect; -import net.minecraft.client.gui.font.glyphs.BakedGlyph.GlyphInstance; import net.minecraft.client.gui.navigation.ScreenRectangle; import net.minecraft.client.gui.render.pip.OversizedItemRenderer; import net.minecraft.client.gui.render.pip.PictureInPictureRenderer; @@ -55,7 +53,6 @@ import net.minecraft.client.gui.render.state.GlyphRenderState; import net.minecraft.client.gui.render.state.GuiElementRenderState; import net.minecraft.client.gui.render.state.GuiItemRenderState; import net.minecraft.client.gui.render.state.GuiRenderState; -import net.minecraft.client.gui.render.state.GuiRenderState.TraverseRange; import net.minecraft.client.gui.render.state.pip.OversizedItemRenderState; import net.minecraft.client.gui.render.state.pip.PictureInPictureRenderState; import net.minecraft.client.renderer.CachedOrthoProjectionMatrixBuffer; @@ -178,13 +175,13 @@ public class GuiRenderer implements AutoCloseable { this.prepareItemElements(); this.prepareText(); this.renderState.sortElements(ELEMENT_SORT_COMPARATOR); - this.addElementsToMeshes(TraverseRange.BEFORE_BLUR); + this.addElementsToMeshes(GuiRenderState.TraverseRange.BEFORE_BLUR); this.firstDrawIndexAfterBlur = this.meshesToDraw.size(); - this.addElementsToMeshes(TraverseRange.AFTER_BLUR); + this.addElementsToMeshes(GuiRenderState.TraverseRange.AFTER_BLUR); this.recordDraws(); } - private void addElementsToMeshes(TraverseRange traverseRange) { + private void addElementsToMeshes(GuiRenderState.TraverseRange traverseRange) { this.previousScissorArea = null; this.previousPipeline = null; this.previousTextureSetup = null; @@ -195,7 +192,7 @@ public class GuiRenderer implements AutoCloseable { } } - private void draw(GpuBufferSlice fogUniforms) { + private void draw(GpuBufferSlice bufferSlice) { if (!this.draws.isEmpty()) { Minecraft minecraft = Minecraft.getInstance(); Window window = minecraft.getWindow(); @@ -219,7 +216,7 @@ public class GuiRenderer implements AutoCloseable { .writeTransform(new Matrix4f().setTranslation(0.0F, 0.0F, -11000.0F), new Vector4f(1.0F, 1.0F, 1.0F, 1.0F), new Vector3f(), new Matrix4f(), 0.0F); if (this.firstDrawIndexAfterBlur > 0) { this.executeDrawRange( - () -> "GUI before blur", renderTarget, fogUniforms, gpuBufferSlice, gpuBuffer, indexType, 0, Math.min(this.firstDrawIndexAfterBlur, this.draws.size()) + () -> "GUI before blur", renderTarget, bufferSlice, gpuBufferSlice, gpuBuffer, indexType, 0, Math.min(this.firstDrawIndexAfterBlur, this.draws.size()) ); } @@ -227,7 +224,7 @@ public class GuiRenderer implements AutoCloseable { RenderSystem.getDevice().createCommandEncoder().clearDepthTexture(renderTarget.getDepthTexture(), 1.0); minecraft.gameRenderer.processBlurEffect(); this.executeDrawRange( - () -> "GUI after blur", renderTarget, fogUniforms, gpuBufferSlice, gpuBuffer, indexType, this.firstDrawIndexAfterBlur, this.draws.size() + () -> "GUI after blur", renderTarget, bufferSlice, gpuBufferSlice, gpuBuffer, indexType, this.firstDrawIndexAfterBlur, this.draws.size() ); } } @@ -236,7 +233,7 @@ public class GuiRenderer implements AutoCloseable { private void executeDrawRange( Supplier debugGroup, RenderTarget renderTarget, - GpuBufferSlice fogUniforms, + GpuBufferSlice fog, GpuBufferSlice dynamicTransforms, GpuBuffer buffer, VertexFormat.IndexType indexType, @@ -253,7 +250,7 @@ public class GuiRenderer implements AutoCloseable { OptionalDouble.empty() )) { RenderSystem.bindDefaultUniforms(renderPass); - renderPass.setUniform("Fog", fogUniforms); + renderPass.setUniform("Fog", fog); renderPass.setUniform("DynamicTransforms", dynamicTransforms); for (int i = start; i < end; i++) { @@ -287,16 +284,16 @@ public class GuiRenderer implements AutoCloseable { this.renderState.forEachText(guiTextRenderState -> { final Matrix3x2f matrix3x2f = guiTextRenderState.pose; final ScreenRectangle screenRectangle = guiTextRenderState.scissor; - guiTextRenderState.ensurePrepared().visit(new GlyphVisitor() { + guiTextRenderState.ensurePrepared().visit(new Font.GlyphVisitor() { @Override - public void acceptGlyph(GlyphInstance glyph) { + public void acceptGlyph(BakedGlyph.GlyphInstance glyph) { if (glyph.glyph().textureView() != null) { GuiRenderer.this.renderState.submitGlyphToCurrentLayer(new GlyphRenderState(matrix3x2f, glyph, screenRectangle)); } } @Override - public void acceptEffect(BakedGlyph glyph, Effect effect) { + public void acceptEffect(BakedGlyph glyph, BakedGlyph.Effect effect) { if (glyph.textureView() != null) { GuiRenderer.this.renderState.submitGlyphToCurrentLayer(new GlyphEffectRenderState(matrix3x2f, glyph, effect, screenRectangle)); } diff --git a/net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent.java b/net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent.java index aba9501e..60b2e3f9 100644 --- a/net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent.java +++ b/net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent.java @@ -11,8 +11,6 @@ import net.minecraft.client.gui.components.AbstractWidget; import net.minecraft.client.gui.components.Renderable; import net.minecraft.client.gui.components.events.GuiEventListener; import net.minecraft.client.gui.narration.NarrationElementOutput; -import net.minecraft.client.gui.screens.recipebook.OverlayRecipeComponent.OverlayRecipeButton.Pos; -import net.minecraft.client.gui.screens.recipebook.RecipeCollection.CraftableStatus; import net.minecraft.client.renderer.RenderPipelines; import net.minecraft.network.chat.CommonComponents; import net.minecraft.recipebook.PlaceRecipeHelper; @@ -53,8 +51,8 @@ public class OverlayRecipeComponent implements Renderable, GuiEventListener { public void init(RecipeCollection collection, ContextMap contextMap, boolean isFiltering, int x, int y, int overlayX, int overlayY, float width) { this.collection = collection; - List list = collection.getSelectedRecipes(CraftableStatus.CRAFTABLE); - List list2 = isFiltering ? Collections.emptyList() : collection.getSelectedRecipes(CraftableStatus.NOT_CRAFTABLE); + List list = collection.getSelectedRecipes(RecipeCollection.CraftableStatus.CRAFTABLE); + List list2 = isFiltering ? Collections.emptyList() : collection.getSelectedRecipes(RecipeCollection.CraftableStatus.NOT_CRAFTABLE); int i = list.size(); int j = i + list2.size(); int k = j <= 16 ? 4 : 5; @@ -174,8 +172,8 @@ public class OverlayRecipeComponent implements Renderable, GuiEventListener { super(x, y, recipe, isCraftable, calculateIngredientsPositions(recipeDisplay, contextMap)); } - private static List calculateIngredientsPositions(RecipeDisplay recipeDisplay, ContextMap contextMap) { - List list = new ArrayList(); + private static List calculateIngredientsPositions(RecipeDisplay recipeDisplay, ContextMap contextMap) { + List list = new ArrayList(); switch (recipeDisplay) { case ShapedCraftingRecipeDisplay shapedCraftingRecipeDisplay: PlaceRecipeHelper.placeRecipe( @@ -219,17 +217,19 @@ public class OverlayRecipeComponent implements Renderable, GuiEventListener { abstract class OverlayRecipeButton extends AbstractWidget { final RecipeDisplayId recipe; private final boolean isCraftable; - private final List slots; + private final List slots; - public OverlayRecipeButton(final int x, final int y, final RecipeDisplayId recipe, final boolean isCraftable, final List slots) { + public OverlayRecipeButton( + final int x, final int y, final RecipeDisplayId recipe, final boolean isCraftable, final List slots + ) { super(x, y, 24, 24, CommonComponents.EMPTY); this.slots = slots; this.recipe = recipe; this.isCraftable = isCraftable; } - protected static Pos createGridPos(int x, int y, List possibleItems) { - return new Pos(3 + x * 7, 3 + y * 7, possibleItems); + protected static OverlayRecipeComponent.OverlayRecipeButton.Pos createGridPos(int x, int y, List possibleItems) { + return new OverlayRecipeComponent.OverlayRecipeButton.Pos(3 + x * 7, 3 + y * 7, possibleItems); } protected abstract ResourceLocation getSprite(boolean enabled); @@ -245,7 +245,7 @@ public class OverlayRecipeComponent implements Renderable, GuiEventListener { float f = this.getX() + 2; float g = this.getY() + 2; - for (Pos pos : this.slots) { + for (OverlayRecipeComponent.OverlayRecipeButton.Pos pos : this.slots) { guiGraphics.pose().pushMatrix(); guiGraphics.pose().translate(f + pos.x, g + pos.y); guiGraphics.pose().scale(0.375F, 0.375F); @@ -254,6 +254,24 @@ public class OverlayRecipeComponent implements Renderable, GuiEventListener { guiGraphics.pose().popMatrix(); } } + + @Environment(EnvType.CLIENT) + protected record Pos(int x, int y, List ingredients) { + + public Pos(int x, int y, List ingredients) { + if (ingredients.isEmpty()) { + throw new IllegalArgumentException("Ingredient list must be non-empty"); + } else { + this.x = x; + this.y = y; + this.ingredients = ingredients; + } + } + + public ItemStack selectIngredient(int index) { + return (ItemStack)this.ingredients.get(index % this.ingredients.size()); + } + } } @Environment(EnvType.CLIENT) @@ -269,7 +287,7 @@ public class OverlayRecipeComponent implements Renderable, GuiEventListener { super(x, y, recipe, isCraftable, calculateIngredientsPositions(recipeDisplay, contextMap)); } - private static List calculateIngredientsPositions(RecipeDisplay recipeDisplay, ContextMap contextMap) { + private static List calculateIngredientsPositions(RecipeDisplay recipeDisplay, ContextMap contextMap) { if (recipeDisplay instanceof FurnaceRecipeDisplay furnaceRecipeDisplay) { List list = furnaceRecipeDisplay.ingredient().resolveForStacks(contextMap); if (!list.isEmpty()) { diff --git a/net/minecraft/client/gui/screens/recipebook/RecipeButton.java b/net/minecraft/client/gui/screens/recipebook/RecipeButton.java index 847d5f91..cd570210 100644 --- a/net/minecraft/client/gui/screens/recipebook/RecipeButton.java +++ b/net/minecraft/client/gui/screens/recipebook/RecipeButton.java @@ -11,7 +11,6 @@ import net.minecraft.client.gui.components.AbstractWidget; import net.minecraft.client.gui.narration.NarratedElementType; import net.minecraft.client.gui.narration.NarrationElementOutput; import net.minecraft.client.gui.screens.Screen; -import net.minecraft.client.gui.screens.recipebook.RecipeCollection.CraftableStatus; import net.minecraft.client.renderer.RenderPipelines; import net.minecraft.network.chat.CommonComponents; import net.minecraft.network.chat.Component; @@ -43,7 +42,7 @@ public class RecipeButton extends AbstractWidget { public void init(RecipeCollection collection, boolean isFiltering, RecipeBookPage page, ContextMap contextMap) { this.collection = collection; - List list = collection.getSelectedRecipes(isFiltering ? CraftableStatus.CRAFTABLE : CraftableStatus.ANY); + List list = collection.getSelectedRecipes(isFiltering ? RecipeCollection.CraftableStatus.CRAFTABLE : RecipeCollection.CraftableStatus.ANY); this.selectedEntries = list.stream() .map(recipeDisplayEntry -> new RecipeButton.ResolvedEntry(recipeDisplayEntry.id(), recipeDisplayEntry.resultItems(contextMap))) .toList(); diff --git a/net/minecraft/client/multiplayer/chat/report/ReportEnvironment.java b/net/minecraft/client/multiplayer/chat/report/ReportEnvironment.java index 7e41b933..a8a04212 100644 --- a/net/minecraft/client/multiplayer/chat/report/ReportEnvironment.java +++ b/net/minecraft/client/multiplayer/chat/report/ReportEnvironment.java @@ -46,7 +46,7 @@ public record ReportEnvironment(String clientVersion, @Nullable ReportEnvironmen private static String getClientVersion() { StringBuilder stringBuilder = new StringBuilder(); - stringBuilder.append("1.21.8"); + stringBuilder.append("1.21.7"); if (Minecraft.checkModStatus().shouldReportAsModified()) { stringBuilder.append(" (modded)"); } diff --git a/net/minecraft/client/renderer/block/model/BlockModelDefinition.java b/net/minecraft/client/renderer/block/model/BlockModelDefinition.java index 9f6c7e21..569e860f 100644 --- a/net/minecraft/client/renderer/block/model/BlockModelDefinition.java +++ b/net/minecraft/client/renderer/block/model/BlockModelDefinition.java @@ -15,8 +15,7 @@ import java.util.function.Predicate; import java.util.function.Supplier; import net.fabricmc.api.EnvType; import net.fabricmc.api.Environment; -import net.minecraft.client.renderer.block.model.BlockStateModel.Unbaked; -import net.minecraft.client.renderer.block.model.BlockStateModel.UnbakedRoot; +import net.minecraft.client.renderer.block.model.multipart.MultiPartModel; import net.minecraft.client.renderer.block.model.multipart.Selector; import net.minecraft.util.ExtraCodecs; import net.minecraft.world.level.block.Block; @@ -43,17 +42,17 @@ public record BlockModelDefinition( : DataResult.success(blockModelDefinition) ); - public Map instantiate(StateDefinition stateDefinition, Supplier sourceSupplier) { - Map map = new IdentityHashMap(); - this.simpleModels.ifPresent(simpleModelSelectors -> simpleModelSelectors.instantiate(stateDefinition, sourceSupplier, (blockState, unbakedRoot) -> { - UnbakedRoot unbakedRoot2 = (UnbakedRoot)map.put(blockState, unbakedRoot); + public Map instantiate(StateDefinition stateDefinition, Supplier name) { + Map map = new IdentityHashMap(); + this.simpleModels.ifPresent(simpleModelSelectors -> simpleModelSelectors.instantiate(stateDefinition, name, (blockState, unbakedRoot) -> { + BlockStateModel.UnbakedRoot unbakedRoot2 = (BlockStateModel.UnbakedRoot)map.put(blockState, unbakedRoot); if (unbakedRoot2 != null) { throw new IllegalArgumentException("Overlapping definition on state: " + blockState); } })); this.multiPart.ifPresent(multiPartDefinition -> { List list = stateDefinition.getPossibleStates(); - UnbakedRoot unbakedRoot = multiPartDefinition.instantiate(stateDefinition); + BlockStateModel.UnbakedRoot unbakedRoot = multiPartDefinition.instantiate(stateDefinition); for (BlockState blockState : list) { map.putIfAbsent(blockState, unbakedRoot); @@ -67,29 +66,29 @@ public record BlockModelDefinition( public static final Codec CODEC = ExtraCodecs.nonEmptyList(Selector.CODEC.listOf()) .xmap(BlockModelDefinition.MultiPartDefinition::new, BlockModelDefinition.MultiPartDefinition::selectors); - public net.minecraft.client.renderer.block.model.multipart.MultiPartModel.Unbaked instantiate(StateDefinition stateDefinition) { - Builder> builder = ImmutableList.builderWithExpectedSize( - this.selectors.size() - ); + public MultiPartModel.Unbaked instantiate(StateDefinition stateDefinition) { + Builder> builder = ImmutableList.builderWithExpectedSize(this.selectors.size()); for (Selector selector : this.selectors) { - builder.add(new net.minecraft.client.renderer.block.model.multipart.MultiPartModel.Selector<>(selector.instantiate(stateDefinition), selector.variant())); + builder.add(new MultiPartModel.Selector<>(selector.instantiate(stateDefinition), selector.variant())); } - return new net.minecraft.client.renderer.block.model.multipart.MultiPartModel.Unbaked(builder.build()); + return new MultiPartModel.Unbaked(builder.build()); } } @Environment(EnvType.CLIENT) - public record SimpleModelSelectors(Map models) { - public static final Codec CODEC = ExtraCodecs.nonEmptyMap(Codec.unboundedMap(Codec.STRING, Unbaked.CODEC)) + public record SimpleModelSelectors(Map models) { + public static final Codec CODEC = ExtraCodecs.nonEmptyMap( + Codec.unboundedMap(Codec.STRING, BlockStateModel.Unbaked.CODEC) + ) .xmap(BlockModelDefinition.SimpleModelSelectors::new, BlockModelDefinition.SimpleModelSelectors::models); - public void instantiate(StateDefinition stateDefinition, Supplier sourceSupplier, BiConsumer output) { + public void instantiate(StateDefinition stateDefinition, Supplier name, BiConsumer output) { this.models.forEach((string, unbaked) -> { try { Predicate> predicate = VariantSelector.predicate(stateDefinition, string); - UnbakedRoot unbakedRoot = unbaked.asRoot(); + BlockStateModel.UnbakedRoot unbakedRoot = unbaked.asRoot(); for (BlockState blockState : stateDefinition.getPossibleStates()) { if (predicate.test(blockState)) { @@ -97,7 +96,7 @@ public record BlockModelDefinition( } } } catch (Exception var9) { - BlockModelDefinition.LOGGER.warn("Exception loading blockstate definition: '{}' for variant: '{}': {}", sourceSupplier.get(), string, var9.getMessage()); + BlockModelDefinition.LOGGER.warn("Exception loading blockstate definition: '{}' for variant: '{}': {}", name.get(), string, var9.getMessage()); } }); } diff --git a/net/minecraft/core/SectionPos.java b/net/minecraft/core/SectionPos.java index a4153727..bdef0f2b 100644 --- a/net/minecraft/core/SectionPos.java +++ b/net/minecraft/core/SectionPos.java @@ -235,10 +235,10 @@ public class SectionPos extends Vec3i { return betweenClosedStream(i - radius, j - radius, k - radius, i + radius, j + radius, k + radius); } - public static Stream aroundChunk(ChunkPos chunkPos, int radius, int minY, int maxY) { + public static Stream aroundChunk(ChunkPos chunkPos, int x, int y, int z) { int i = chunkPos.x; int j = chunkPos.z; - return betweenClosedStream(i - radius, minY, j - radius, i + radius, maxY, j + radius); + return betweenClosedStream(i - x, y, j - x, i + x, z, j + x); } public static Stream betweenClosedStream(int x1, int y1, int z1, int x2, int y2, int z2) { diff --git a/net/minecraft/world/entity/npc/WanderingTrader.java b/net/minecraft/world/entity/npc/WanderingTrader.java index 69b2d7c0..0ff57b9b 100644 --- a/net/minecraft/world/entity/npc/WanderingTrader.java +++ b/net/minecraft/world/entity/npc/WanderingTrader.java @@ -24,7 +24,6 @@ import net.minecraft.world.entity.ai.goal.PanicGoal; import net.minecraft.world.entity.ai.goal.TradeWithPlayerGoal; import net.minecraft.world.entity.ai.goal.UseItemGoal; import net.minecraft.world.entity.ai.goal.WaterAvoidingRandomStrollGoal; -import net.minecraft.world.entity.ai.goal.Goal.Flag; import net.minecraft.world.entity.monster.Evoker; import net.minecraft.world.entity.monster.Illusioner; import net.minecraft.world.entity.monster.Pillager; @@ -32,7 +31,6 @@ import net.minecraft.world.entity.monster.Vex; import net.minecraft.world.entity.monster.Vindicator; import net.minecraft.world.entity.monster.Zoglin; import net.minecraft.world.entity.monster.Zombie; -import net.minecraft.world.entity.npc.VillagerTrades.ItemListing; import net.minecraft.world.entity.player.Player; import net.minecraft.world.item.ItemStack; import net.minecraft.world.item.Items; @@ -136,8 +134,8 @@ public class WanderingTrader extends AbstractVillager implements Consumable.Over protected void updateTrades() { MerchantOffers merchantOffers = this.getOffers(); - for (Pair pair : VillagerTrades.WANDERING_TRADER_TRADES) { - ItemListing[] itemListings = pair.getLeft(); + for (Pair pair : VillagerTrades.WANDERING_TRADER_TRADES) { + VillagerTrades.ItemListing[] itemListings = pair.getLeft(); this.addOffersFromItemListings(merchantOffers, itemListings, pair.getRight()); } } @@ -240,7 +238,7 @@ public class WanderingTrader extends AbstractVillager implements Consumable.Over this.trader = trader; this.stopDistance = stopDistance; this.speedModifier = speedModifier; - this.setFlags(EnumSet.of(Flag.MOVE)); + this.setFlags(EnumSet.of(Goal.Flag.MOVE)); } @Override diff --git a/net/minecraft/world/item/component/Consumable.java b/net/minecraft/world/item/component/Consumable.java index e0bcd374..8048d788 100644 --- a/net/minecraft/world/item/component/Consumable.java +++ b/net/minecraft/world/item/component/Consumable.java @@ -139,8 +139,8 @@ public record Consumable( Builder() { } - public Consumable.Builder consumeSeconds(float consumeSeconds) { - this.consumeSeconds = consumeSeconds; + public Consumable.Builder consumeSeconds(float consumeSounds) { + this.consumeSeconds = consumeSounds; return this; } diff --git a/net/minecraft/world/level/block/AbstractChestBlock.java b/net/minecraft/world/level/block/AbstractChestBlock.java index 484ed736..2e241685 100644 --- a/net/minecraft/world/level/block/AbstractChestBlock.java +++ b/net/minecraft/world/level/block/AbstractChestBlock.java @@ -4,7 +4,6 @@ import com.mojang.serialization.MapCodec; import java.util.function.Supplier; import net.minecraft.core.BlockPos; import net.minecraft.world.level.Level; -import net.minecraft.world.level.block.DoubleBlockCombiner.NeighborCombineResult; import net.minecraft.world.level.block.entity.BlockEntity; import net.minecraft.world.level.block.entity.BlockEntityType; import net.minecraft.world.level.block.entity.ChestBlockEntity; @@ -22,5 +21,5 @@ public abstract class AbstractChestBlock extends BaseEnti @Override protected abstract MapCodec> codec(); - public abstract NeighborCombineResult combine(BlockState state, Level level, BlockPos pos, boolean override); + public abstract DoubleBlockCombiner.NeighborCombineResult combine(BlockState state, Level level, BlockPos pos, boolean override); } diff --git a/net/minecraft/world/level/block/AbstractFurnaceBlock.java b/net/minecraft/world/level/block/AbstractFurnaceBlock.java index 92e91b51..6fde7a44 100644 --- a/net/minecraft/world/level/block/AbstractFurnaceBlock.java +++ b/net/minecraft/world/level/block/AbstractFurnaceBlock.java @@ -16,7 +16,7 @@ import net.minecraft.world.level.block.entity.BlockEntityTicker; import net.minecraft.world.level.block.entity.BlockEntityType; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition.Builder; +import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.world.level.block.state.properties.BlockStateProperties; import net.minecraft.world.level.block.state.properties.BooleanProperty; import net.minecraft.world.level.block.state.properties.EnumProperty; @@ -82,7 +82,7 @@ public abstract class AbstractFurnaceBlock extends BaseEntityBlock { } @Override - protected void createBlockStateDefinition(Builder builder) { + protected void createBlockStateDefinition(StateDefinition.Builder builder) { builder.add(FACING, LIT); } diff --git a/net/minecraft/world/level/block/AbstractSkullBlock.java b/net/minecraft/world/level/block/AbstractSkullBlock.java index 83992ef1..cd6bb5fa 100644 --- a/net/minecraft/world/level/block/AbstractSkullBlock.java +++ b/net/minecraft/world/level/block/AbstractSkullBlock.java @@ -4,14 +4,13 @@ import com.mojang.serialization.MapCodec; import net.minecraft.core.BlockPos; import net.minecraft.world.item.context.BlockPlaceContext; import net.minecraft.world.level.Level; -import net.minecraft.world.level.block.SkullBlock.Type; import net.minecraft.world.level.block.entity.BlockEntity; import net.minecraft.world.level.block.entity.BlockEntityTicker; import net.minecraft.world.level.block.entity.BlockEntityType; import net.minecraft.world.level.block.entity.SkullBlockEntity; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition.Builder; +import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.world.level.block.state.properties.BlockStateProperties; import net.minecraft.world.level.block.state.properties.BooleanProperty; import net.minecraft.world.level.pathfinder.PathComputationType; @@ -20,9 +19,9 @@ import org.jetbrains.annotations.Nullable; public abstract class AbstractSkullBlock extends BaseEntityBlock { public static final BooleanProperty POWERED = BlockStateProperties.POWERED; - private final Type type; + private final SkullBlock.Type type; - public AbstractSkullBlock(Type type, BlockBehaviour.Properties properties) { + public AbstractSkullBlock(SkullBlock.Type type, BlockBehaviour.Properties properties) { super(properties); this.type = type; this.registerDefaultState(this.stateDefinition.any().setValue(POWERED, false)); @@ -49,7 +48,7 @@ public abstract class AbstractSkullBlock extends BaseEntityBlock { return null; } - public Type getType() { + public SkullBlock.Type getType() { return this.type; } @@ -59,7 +58,7 @@ public abstract class AbstractSkullBlock extends BaseEntityBlock { } @Override - protected void createBlockStateDefinition(Builder builder) { + protected void createBlockStateDefinition(StateDefinition.Builder builder) { builder.add(POWERED); } diff --git a/net/minecraft/world/level/block/BarrelBlock.java b/net/minecraft/world/level/block/BarrelBlock.java index 0fbbca84..9bd35b02 100644 --- a/net/minecraft/world/level/block/BarrelBlock.java +++ b/net/minecraft/world/level/block/BarrelBlock.java @@ -17,7 +17,7 @@ import net.minecraft.world.level.block.entity.BarrelBlockEntity; import net.minecraft.world.level.block.entity.BlockEntity; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition.Builder; +import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.world.level.block.state.properties.BlockStateProperties; import net.minecraft.world.level.block.state.properties.BooleanProperty; import net.minecraft.world.level.block.state.properties.EnumProperty; @@ -90,7 +90,7 @@ public class BarrelBlock extends BaseEntityBlock { } @Override - protected void createBlockStateDefinition(Builder builder) { + protected void createBlockStateDefinition(StateDefinition.Builder builder) { builder.add(FACING, OPEN); } diff --git a/net/minecraft/world/level/block/BaseEntityBlock.java b/net/minecraft/world/level/block/BaseEntityBlock.java index c3f24241..a6f555bd 100644 --- a/net/minecraft/world/level/block/BaseEntityBlock.java +++ b/net/minecraft/world/level/block/BaseEntityBlock.java @@ -35,8 +35,8 @@ public abstract class BaseEntityBlock extends Block implements EntityBlock { @Nullable protected static BlockEntityTicker createTickerHelper( - BlockEntityType actualType, BlockEntityType expectedType, BlockEntityTicker ticker + BlockEntityType serverType, BlockEntityType clientType, BlockEntityTicker ticker ) { - return expectedType == actualType ? ticker : null; + return clientType == serverType ? ticker : null; } } diff --git a/net/minecraft/world/level/block/BeehiveBlock.java b/net/minecraft/world/level/block/BeehiveBlock.java index 7173c4aa..2eeada4b 100644 --- a/net/minecraft/world/level/block/BeehiveBlock.java +++ b/net/minecraft/world/level/block/BeehiveBlock.java @@ -7,7 +7,6 @@ import net.minecraft.Util; import net.minecraft.advancements.CriteriaTriggers; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; -import net.minecraft.core.Direction.Axis; import net.minecraft.core.component.DataComponents; import net.minecraft.core.particles.ParticleTypes; import net.minecraft.server.level.ServerLevel; @@ -47,14 +46,14 @@ import net.minecraft.world.level.block.entity.BeehiveBlockEntity; import net.minecraft.world.level.block.entity.BlockEntity; import net.minecraft.world.level.block.entity.BlockEntityTicker; import net.minecraft.world.level.block.entity.BlockEntityType; -import net.minecraft.world.level.block.entity.BeehiveBlockEntity.BeeReleaseStatus; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition.Builder; +import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.world.level.block.state.properties.BlockStateProperties; import net.minecraft.world.level.block.state.properties.EnumProperty; import net.minecraft.world.level.block.state.properties.IntegerProperty; import net.minecraft.world.level.gameevent.GameEvent; +import net.minecraft.world.level.storage.loot.LootParams; import net.minecraft.world.level.storage.loot.parameters.LootContextParams; import net.minecraft.world.phys.AABB; import net.minecraft.world.phys.BlockHitResult; @@ -93,7 +92,7 @@ public class BeehiveBlock extends BaseEntityBlock { super.playerDestroy(level, player, pos, state, blockEntity, tool); if (!level.isClientSide && blockEntity instanceof BeehiveBlockEntity beehiveBlockEntity) { if (!EnchantmentHelper.hasTag(tool, EnchantmentTags.PREVENTS_BEE_SPAWNS_WHEN_MINING)) { - beehiveBlockEntity.emptyAllLivingFromHive(player, state, BeeReleaseStatus.EMERGENCY); + beehiveBlockEntity.emptyAllLivingFromHive(player, state, BeehiveBlockEntity.BeeReleaseStatus.EMERGENCY); Containers.updateNeighboursAfterDestroy(state, level, pos); this.angerNearbyBees(level, pos); } @@ -168,7 +167,7 @@ public class BeehiveBlock extends BaseEntityBlock { this.angerNearbyBees(level, pos); } - this.releaseBeesAndResetHoneyLevel(level, state, pos, player, BeeReleaseStatus.EMERGENCY); + this.releaseBeesAndResetHoneyLevel(level, state, pos, player, BeehiveBlockEntity.BeeReleaseStatus.EMERGENCY); } else { this.resetHoneyLevel(level, state, pos); } @@ -183,7 +182,9 @@ public class BeehiveBlock extends BaseEntityBlock { return level.getBlockEntity(pos) instanceof BeehiveBlockEntity beehiveBlockEntity ? !beehiveBlockEntity.isEmpty() : false; } - public void releaseBeesAndResetHoneyLevel(Level level, BlockState state, BlockPos pos, @Nullable Player player, BeeReleaseStatus beeReleaseStatus) { + public void releaseBeesAndResetHoneyLevel( + Level level, BlockState state, BlockPos pos, @Nullable Player player, BeehiveBlockEntity.BeeReleaseStatus beeReleaseStatus + ) { this.resetHoneyLevel(level, state, pos); if (level.getBlockEntity(pos) instanceof BeehiveBlockEntity beehiveBlockEntity) { beehiveBlockEntity.emptyAllLivingFromHive(player, state, beeReleaseStatus); @@ -206,16 +207,16 @@ public class BeehiveBlock extends BaseEntityBlock { private void trySpawnDripParticles(Level level, BlockPos pos, BlockState state) { if (state.getFluidState().isEmpty() && !(level.random.nextFloat() < 0.3F)) { VoxelShape voxelShape = state.getCollisionShape(level, pos); - double d = voxelShape.max(Axis.Y); + double d = voxelShape.max(Direction.Axis.Y); if (d >= 1.0 && !state.is(BlockTags.IMPERMEABLE)) { - double e = voxelShape.min(Axis.Y); + double e = voxelShape.min(Direction.Axis.Y); if (e > 0.0) { this.spawnParticle(level, pos, voxelShape, pos.getY() + e - 0.05); } else { BlockPos blockPos = pos.below(); BlockState blockState = level.getBlockState(blockPos); VoxelShape voxelShape2 = blockState.getCollisionShape(level, blockPos); - double f = voxelShape2.max(Axis.Y); + double f = voxelShape2.max(Direction.Axis.Y); if ((f < 1.0 || !blockState.isCollisionShapeFullBlock(level, blockPos)) && blockState.getFluidState().isEmpty()) { this.spawnParticle(level, pos, voxelShape, pos.getY() - 0.05); } @@ -226,7 +227,12 @@ public class BeehiveBlock extends BaseEntityBlock { private void spawnParticle(Level level, BlockPos pos, VoxelShape shape, double y) { this.spawnFluidParticle( - level, pos.getX() + shape.min(Axis.X), pos.getX() + shape.max(Axis.X), pos.getZ() + shape.min(Axis.Z), pos.getZ() + shape.max(Axis.Z), y + level, + pos.getX() + shape.min(Direction.Axis.X), + pos.getX() + shape.max(Direction.Axis.X), + pos.getZ() + shape.min(Direction.Axis.Z), + pos.getZ() + shape.max(Direction.Axis.Z), + y ); } @@ -242,7 +248,7 @@ public class BeehiveBlock extends BaseEntityBlock { } @Override - protected void createBlockStateDefinition(Builder builder) { + protected void createBlockStateDefinition(StateDefinition.Builder builder) { builder.add(HONEY_LEVEL, FACING); } @@ -280,7 +286,7 @@ public class BeehiveBlock extends BaseEntityBlock { } @Override - protected List getDrops(BlockState state, net.minecraft.world.level.storage.loot.LootParams.Builder params) { + protected List getDrops(BlockState state, LootParams.Builder params) { Entity entity = params.getOptionalParameter(LootContextParams.THIS_ENTITY); if (entity instanceof PrimedTnt || entity instanceof Creeper @@ -289,7 +295,7 @@ public class BeehiveBlock extends BaseEntityBlock { || entity instanceof MinecartTNT) { BlockEntity blockEntity = params.getOptionalParameter(LootContextParams.BLOCK_ENTITY); if (blockEntity instanceof BeehiveBlockEntity beehiveBlockEntity) { - beehiveBlockEntity.emptyAllLivingFromHive(null, state, BeeReleaseStatus.EMERGENCY); + beehiveBlockEntity.emptyAllLivingFromHive(null, state, BeehiveBlockEntity.BeeReleaseStatus.EMERGENCY); } } @@ -318,7 +324,7 @@ public class BeehiveBlock extends BaseEntityBlock { RandomSource random ) { if (level.getBlockState(neighborPos).getBlock() instanceof FireBlock && level.getBlockEntity(pos) instanceof BeehiveBlockEntity beehiveBlockEntity) { - beehiveBlockEntity.emptyAllLivingFromHive(null, state, BeeReleaseStatus.EMERGENCY); + beehiveBlockEntity.emptyAllLivingFromHive(null, state, BeehiveBlockEntity.BeeReleaseStatus.EMERGENCY); } return super.updateShape(state, level, scheduledTickAccess, pos, direction, neighborPos, neighborState, random); diff --git a/net/minecraft/world/level/block/BellBlock.java b/net/minecraft/world/level/block/BellBlock.java index 5ed4708f..b478ed60 100644 --- a/net/minecraft/world/level/block/BellBlock.java +++ b/net/minecraft/world/level/block/BellBlock.java @@ -5,7 +5,6 @@ import java.util.Map; import java.util.function.BiConsumer; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; -import net.minecraft.core.Direction.Axis; import net.minecraft.server.level.ServerLevel; import net.minecraft.sounds.SoundEvents; import net.minecraft.sounds.SoundSource; @@ -28,7 +27,7 @@ import net.minecraft.world.level.block.entity.BlockEntityTicker; import net.minecraft.world.level.block.entity.BlockEntityType; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition.Builder; +import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.world.level.block.state.properties.BellAttachType; import net.minecraft.world.level.block.state.properties.BlockStateProperties; import net.minecraft.world.level.block.state.properties.BooleanProperty; @@ -49,8 +48,10 @@ public class BellBlock extends BaseEntityBlock { public static final BooleanProperty POWERED = BlockStateProperties.POWERED; private static final VoxelShape BELL_SHAPE = Shapes.or(Block.column(6.0, 6.0, 13.0), Block.column(8.0, 4.0, 6.0)); private static final VoxelShape SHAPE_CEILING = Shapes.or(BELL_SHAPE, Block.column(2.0, 13.0, 16.0)); - private static final Map SHAPE_FLOOR = Shapes.rotateHorizontalAxis(Block.cube(16.0, 16.0, 8.0)); - private static final Map SHAPE_DOUBLE_WALL = Shapes.rotateHorizontalAxis(Shapes.or(BELL_SHAPE, Block.column(2.0, 16.0, 13.0, 15.0))); + private static final Map SHAPE_FLOOR = Shapes.rotateHorizontalAxis(Block.cube(16.0, 16.0, 8.0)); + private static final Map SHAPE_DOUBLE_WALL = Shapes.rotateHorizontalAxis( + Shapes.or(BELL_SHAPE, Block.column(2.0, 16.0, 13.0, 15.0)) + ); private static final Map SHAPE_SINGLE_WALL = Shapes.rotateHorizontal(Shapes.or(BELL_SHAPE, Block.boxZ(2.0, 13.0, 15.0, 0.0, 13.0))); public static final int EVENT_BELL_RING = 1; @@ -107,7 +108,7 @@ public class BellBlock extends BaseEntityBlock { * @return true if the bell can be rung from the given side and vertical position. For example, bells attached to their northern neighbor cannot be rung from the south face, since it can't swing north-south. */ private boolean isProperHit(BlockState pos, Direction direction, double distanceY) { - if (direction.getAxis() != Axis.Y && !(distanceY > 0.8124F)) { + if (direction.getAxis() != Direction.Axis.Y && !(distanceY > 0.8124F)) { Direction direction2 = pos.getValue(FACING); BellAttachType bellAttachType = pos.getValue(ATTACHMENT); switch (bellAttachType) { @@ -173,8 +174,8 @@ public class BellBlock extends BaseEntityBlock { Direction direction = context.getClickedFace(); BlockPos blockPos = context.getClickedPos(); Level level = context.getLevel(); - Axis axis = direction.getAxis(); - if (axis == Axis.Y) { + Direction.Axis axis = direction.getAxis(); + if (axis == Direction.Axis.Y) { BlockState blockState = this.defaultBlockState() .setValue(ATTACHMENT, direction == Direction.DOWN ? BellAttachType.CEILING : BellAttachType.FLOOR) .setValue(FACING, context.getHorizontalDirection()); @@ -182,10 +183,10 @@ public class BellBlock extends BaseEntityBlock { return blockState; } } else { - boolean bl = axis == Axis.X + boolean bl = axis == Direction.Axis.X && level.getBlockState(blockPos.west()).isFaceSturdy(level, blockPos.west(), Direction.EAST) && level.getBlockState(blockPos.east()).isFaceSturdy(level, blockPos.east(), Direction.WEST) - || axis == Axis.Z + || axis == Direction.Axis.Z && level.getBlockState(blockPos.north()).isFaceSturdy(level, blockPos.north(), Direction.SOUTH) && level.getBlockState(blockPos.south()).isFaceSturdy(level, blockPos.south(), Direction.NORTH); BlockState blockState = this.defaultBlockState() @@ -266,7 +267,7 @@ public class BellBlock extends BaseEntityBlock { } @Override - protected void createBlockStateDefinition(Builder builder) { + protected void createBlockStateDefinition(StateDefinition.Builder builder) { builder.add(FACING, ATTACHMENT, POWERED); } diff --git a/net/minecraft/world/level/block/BrewingStandBlock.java b/net/minecraft/world/level/block/BrewingStandBlock.java index 0ad887d3..355b7277 100644 --- a/net/minecraft/world/level/block/BrewingStandBlock.java +++ b/net/minecraft/world/level/block/BrewingStandBlock.java @@ -18,7 +18,7 @@ import net.minecraft.world.level.block.entity.BlockEntityType; import net.minecraft.world.level.block.entity.BrewingStandBlockEntity; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition.Builder; +import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.world.level.block.state.properties.BlockStateProperties; import net.minecraft.world.level.block.state.properties.BooleanProperty; import net.minecraft.world.level.pathfinder.PathComputationType; @@ -95,7 +95,7 @@ public class BrewingStandBlock extends BaseEntityBlock { } @Override - protected void createBlockStateDefinition(Builder builder) { + protected void createBlockStateDefinition(StateDefinition.Builder builder) { builder.add(HAS_BOTTLE[0], HAS_BOTTLE[1], HAS_BOTTLE[2]); } diff --git a/net/minecraft/world/level/block/BrushableBlock.java b/net/minecraft/world/level/block/BrushableBlock.java index 0fb539e9..8ffd0f6a 100644 --- a/net/minecraft/world/level/block/BrushableBlock.java +++ b/net/minecraft/world/level/block/BrushableBlock.java @@ -18,7 +18,7 @@ import net.minecraft.world.level.block.entity.BlockEntity; import net.minecraft.world.level.block.entity.BrushableBlockEntity; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition.Builder; +import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.world.level.block.state.properties.BlockStateProperties; import net.minecraft.world.level.block.state.properties.IntegerProperty; import net.minecraft.world.level.gameevent.GameEvent; @@ -55,7 +55,7 @@ public class BrushableBlock extends BaseEntityBlock implements Fallable { } @Override - protected void createBlockStateDefinition(Builder builder) { + protected void createBlockStateDefinition(StateDefinition.Builder builder) { builder.add(DUSTED); } diff --git a/net/minecraft/world/level/block/CampfireBlock.java b/net/minecraft/world/level/block/CampfireBlock.java index 03a0265d..7a4988e5 100644 --- a/net/minecraft/world/level/block/CampfireBlock.java +++ b/net/minecraft/world/level/block/CampfireBlock.java @@ -27,7 +27,6 @@ import net.minecraft.world.item.crafting.RecipeManager; import net.minecraft.world.item.crafting.RecipePropertySet; import net.minecraft.world.item.crafting.RecipeType; import net.minecraft.world.item.crafting.SingleRecipeInput; -import net.minecraft.world.item.crafting.RecipeManager.CachedCheck; import net.minecraft.world.level.BlockGetter; import net.minecraft.world.level.Level; import net.minecraft.world.level.LevelAccessor; @@ -39,7 +38,7 @@ import net.minecraft.world.level.block.entity.BlockEntityType; import net.minecraft.world.level.block.entity.CampfireBlockEntity; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition.Builder; +import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.world.level.block.state.properties.BlockStateProperties; import net.minecraft.world.level.block.state.properties.BooleanProperty; import net.minecraft.world.level.block.state.properties.EnumProperty; @@ -290,7 +289,7 @@ public class CampfireBlock extends BaseEntityBlock implements SimpleWaterloggedB } @Override - protected void createBlockStateDefinition(Builder builder) { + protected void createBlockStateDefinition(StateDefinition.Builder builder) { builder.add(LIT, SIGNAL_FIRE, WATERLOGGED, FACING); } @@ -304,7 +303,7 @@ public class CampfireBlock extends BaseEntityBlock implements SimpleWaterloggedB public BlockEntityTicker getTicker(Level level, BlockState state, BlockEntityType blockEntityType) { if (level instanceof ServerLevel serverLevel) { if ((Boolean)state.getValue(LIT)) { - CachedCheck cachedCheck = RecipeManager.createCheck(RecipeType.CAMPFIRE_COOKING); + RecipeManager.CachedCheck cachedCheck = RecipeManager.createCheck(RecipeType.CAMPFIRE_COOKING); return createTickerHelper( blockEntityType, BlockEntityType.CAMPFIRE, diff --git a/net/minecraft/world/level/block/ChiseledBookShelfBlock.java b/net/minecraft/world/level/block/ChiseledBookShelfBlock.java index bab63cef..8285188f 100644 --- a/net/minecraft/world/level/block/ChiseledBookShelfBlock.java +++ b/net/minecraft/world/level/block/ChiseledBookShelfBlock.java @@ -24,7 +24,7 @@ import net.minecraft.world.level.block.entity.BlockEntity; import net.minecraft.world.level.block.entity.ChiseledBookShelfBlockEntity; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition.Builder; +import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.world.level.block.state.properties.BlockStateProperties; import net.minecraft.world.level.block.state.properties.BooleanProperty; import net.minecraft.world.level.block.state.properties.Property; @@ -172,7 +172,7 @@ public class ChiseledBookShelfBlock extends BaseEntityBlock { } @Override - protected void createBlockStateDefinition(Builder builder) { + protected void createBlockStateDefinition(StateDefinition.Builder builder) { builder.add(HorizontalDirectionalBlock.FACING); SLOT_OCCUPIED_PROPERTIES.forEach(property -> builder.add(property)); } diff --git a/net/minecraft/world/level/block/CommandBlock.java b/net/minecraft/world/level/block/CommandBlock.java index 1648a395..3b399bc9 100644 --- a/net/minecraft/world/level/block/CommandBlock.java +++ b/net/minecraft/world/level/block/CommandBlock.java @@ -6,7 +6,6 @@ import com.mojang.serialization.MapCodec; import com.mojang.serialization.codecs.RecordCodecBuilder; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; -import net.minecraft.core.BlockPos.MutableBlockPos; import net.minecraft.core.component.DataComponents; import net.minecraft.server.level.ServerLevel; import net.minecraft.util.RandomSource; @@ -21,10 +20,9 @@ import net.minecraft.world.level.GameRules; import net.minecraft.world.level.Level; import net.minecraft.world.level.block.entity.BlockEntity; import net.minecraft.world.level.block.entity.CommandBlockEntity; -import net.minecraft.world.level.block.entity.CommandBlockEntity.Mode; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition.Builder; +import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.world.level.block.state.properties.BlockStateProperties; import net.minecraft.world.level.block.state.properties.BooleanProperty; import net.minecraft.world.level.block.state.properties.EnumProperty; @@ -75,7 +73,7 @@ public class CommandBlock extends BaseEntityBlock implements GameMasterBlock { if (powered != bl) { blockEntity.setPowered(powered); if (powered) { - if (blockEntity.isAutomatic() || blockEntity.getMode() == Mode.SEQUENCE) { + if (blockEntity.isAutomatic() || blockEntity.getMode() == CommandBlockEntity.Mode.SEQUENCE) { return; } @@ -90,9 +88,9 @@ public class CommandBlock extends BaseEntityBlock implements GameMasterBlock { if (level.getBlockEntity(pos) instanceof CommandBlockEntity commandBlockEntity) { BaseCommandBlock baseCommandBlock = commandBlockEntity.getCommandBlock(); boolean bl = !StringUtil.isNullOrEmpty(baseCommandBlock.getCommand()); - Mode mode = commandBlockEntity.getMode(); + CommandBlockEntity.Mode mode = commandBlockEntity.getMode(); boolean bl2 = commandBlockEntity.wasConditionMet(); - if (mode == Mode.AUTO) { + if (mode == CommandBlockEntity.Mode.AUTO) { commandBlockEntity.markConditionMet(); if (bl2) { this.execute(state, level, pos, baseCommandBlock, bl); @@ -103,7 +101,7 @@ public class CommandBlock extends BaseEntityBlock implements GameMasterBlock { if (commandBlockEntity.isPowered() || commandBlockEntity.isAutomatic()) { level.scheduleTick(pos, this, 1); } - } else if (mode == Mode.REDSTONE) { + } else if (mode == CommandBlockEntity.Mode.REDSTONE) { if (bl2) { this.execute(state, level, pos, baseCommandBlock, bl); } else if (commandBlockEntity.isConditional()) { @@ -174,7 +172,7 @@ public class CommandBlock extends BaseEntityBlock implements GameMasterBlock { } @Override - protected void createBlockStateDefinition(Builder builder) { + protected void createBlockStateDefinition(StateDefinition.Builder builder) { builder.add(FACING, CONDITIONAL); } @@ -184,7 +182,7 @@ public class CommandBlock extends BaseEntityBlock implements GameMasterBlock { } private static void executeChain(ServerLevel level, BlockPos pos, Direction direction) { - MutableBlockPos mutableBlockPos = pos.mutable(); + BlockPos.MutableBlockPos mutableBlockPos = pos.mutable(); GameRules gameRules = level.getGameRules(); int i = gameRules.getInt(GameRules.RULE_MAX_COMMAND_CHAIN_LENGTH); @@ -194,7 +192,7 @@ public class CommandBlock extends BaseEntityBlock implements GameMasterBlock { Block block = blockState.getBlock(); if (!blockState.is(Blocks.CHAIN_COMMAND_BLOCK) || !(level.getBlockEntity(mutableBlockPos) instanceof CommandBlockEntity commandBlockEntity) - || commandBlockEntity.getMode() != Mode.SEQUENCE) { + || commandBlockEntity.getMode() != CommandBlockEntity.Mode.SEQUENCE) { break; } diff --git a/net/minecraft/world/level/block/ConduitBlock.java b/net/minecraft/world/level/block/ConduitBlock.java index cd0a59fa..86ef042a 100644 --- a/net/minecraft/world/level/block/ConduitBlock.java +++ b/net/minecraft/world/level/block/ConduitBlock.java @@ -16,7 +16,7 @@ import net.minecraft.world.level.block.entity.BlockEntityType; import net.minecraft.world.level.block.entity.ConduitBlockEntity; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition.Builder; +import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.world.level.block.state.properties.BlockStateProperties; import net.minecraft.world.level.block.state.properties.BooleanProperty; import net.minecraft.world.level.material.FluidState; @@ -42,7 +42,7 @@ public class ConduitBlock extends BaseEntityBlock implements SimpleWaterloggedBl } @Override - protected void createBlockStateDefinition(Builder builder) { + protected void createBlockStateDefinition(StateDefinition.Builder builder) { builder.add(WATERLOGGED); } diff --git a/net/minecraft/world/level/block/CrafterBlock.java b/net/minecraft/world/level/block/CrafterBlock.java index ce80f1cd..62e45bce 100644 --- a/net/minecraft/world/level/block/CrafterBlock.java +++ b/net/minecraft/world/level/block/CrafterBlock.java @@ -29,7 +29,7 @@ import net.minecraft.world.level.block.entity.CrafterBlockEntity; import net.minecraft.world.level.block.entity.HopperBlockEntity; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition.Builder; +import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.world.level.block.state.properties.BlockStateProperties; import net.minecraft.world.level.block.state.properties.BooleanProperty; import net.minecraft.world.level.block.state.properties.EnumProperty; @@ -230,7 +230,7 @@ public class CrafterBlock extends BaseEntityBlock { } @Override - protected void createBlockStateDefinition(Builder builder) { + protected void createBlockStateDefinition(StateDefinition.Builder builder) { builder.add(ORIENTATION, TRIGGERED, CRAFTING); } } diff --git a/net/minecraft/world/level/block/CreakingHeartBlock.java b/net/minecraft/world/level/block/CreakingHeartBlock.java index 0e864cec..65aefffc 100644 --- a/net/minecraft/world/level/block/CreakingHeartBlock.java +++ b/net/minecraft/world/level/block/CreakingHeartBlock.java @@ -4,7 +4,6 @@ import com.mojang.serialization.MapCodec; import java.util.function.BiConsumer; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; -import net.minecraft.core.Direction.Axis; import net.minecraft.server.level.ServerLevel; import net.minecraft.sounds.SoundEvents; import net.minecraft.sounds.SoundSource; @@ -26,7 +25,7 @@ import net.minecraft.world.level.block.entity.BlockEntityType; import net.minecraft.world.level.block.entity.CreakingHeartBlockEntity; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition.Builder; +import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.world.level.block.state.properties.BlockStateProperties; import net.minecraft.world.level.block.state.properties.BooleanProperty; import net.minecraft.world.level.block.state.properties.CreakingHeartState; @@ -36,7 +35,7 @@ import org.jetbrains.annotations.Nullable; public class CreakingHeartBlock extends BaseEntityBlock { public static final MapCodec CODEC = simpleCodec(CreakingHeartBlock::new); - public static final EnumProperty AXIS = BlockStateProperties.AXIS; + public static final EnumProperty AXIS = BlockStateProperties.AXIS; public static final EnumProperty STATE = BlockStateProperties.CREAKING_HEART_STATE; public static final BooleanProperty NATURAL = BlockStateProperties.NATURAL; @@ -47,7 +46,7 @@ public class CreakingHeartBlock extends BaseEntityBlock { protected CreakingHeartBlock(BlockBehaviour.Properties properties) { super(properties); - this.registerDefaultState(this.defaultBlockState().setValue(AXIS, Axis.Y).setValue(STATE, CreakingHeartState.UPROOTED).setValue(NATURAL, false)); + this.registerDefaultState(this.defaultBlockState().setValue(AXIS, Direction.Axis.Y).setValue(STATE, CreakingHeartState.UPROOTED).setValue(NATURAL, false)); } @Override @@ -112,7 +111,7 @@ public class CreakingHeartBlock extends BaseEntityBlock { } public static boolean hasRequiredLogs(BlockState state, LevelReader level, BlockPos pos) { - Axis axis = state.getValue(AXIS); + Direction.Axis axis = state.getValue(AXIS); for (Direction direction : axis.getDirections()) { BlockState blockState = level.getBlockState(pos.relative(direction)); @@ -148,7 +147,7 @@ public class CreakingHeartBlock extends BaseEntityBlock { } @Override - protected void createBlockStateDefinition(Builder builder) { + protected void createBlockStateDefinition(StateDefinition.Builder builder) { builder.add(AXIS, STATE, NATURAL); } diff --git a/net/minecraft/world/level/block/DaylightDetectorBlock.java b/net/minecraft/world/level/block/DaylightDetectorBlock.java index 17d3bee3..a09749b8 100644 --- a/net/minecraft/world/level/block/DaylightDetectorBlock.java +++ b/net/minecraft/world/level/block/DaylightDetectorBlock.java @@ -15,12 +15,11 @@ import net.minecraft.world.level.block.entity.BlockEntityType; import net.minecraft.world.level.block.entity.DaylightDetectorBlockEntity; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition.Builder; +import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.world.level.block.state.properties.BlockStateProperties; import net.minecraft.world.level.block.state.properties.BooleanProperty; import net.minecraft.world.level.block.state.properties.IntegerProperty; import net.minecraft.world.level.gameevent.GameEvent; -import net.minecraft.world.level.gameevent.GameEvent.Context; import net.minecraft.world.phys.BlockHitResult; import net.minecraft.world.phys.shapes.CollisionContext; import net.minecraft.world.phys.shapes.VoxelShape; @@ -83,7 +82,7 @@ public class DaylightDetectorBlock extends BaseEntityBlock { if (!level.isClientSide) { BlockState blockState = state.cycle(INVERTED); level.setBlock(pos, blockState, 2); - level.gameEvent(GameEvent.BLOCK_CHANGE, pos, Context.of(player, blockState)); + level.gameEvent(GameEvent.BLOCK_CHANGE, pos, GameEvent.Context.of(player, blockState)); updateSignalStrength(blockState, level, pos); } @@ -116,7 +115,7 @@ public class DaylightDetectorBlock extends BaseEntityBlock { } @Override - protected void createBlockStateDefinition(Builder builder) { + protected void createBlockStateDefinition(StateDefinition.Builder builder) { builder.add(POWER, INVERTED); } } diff --git a/net/minecraft/world/level/block/DecoratedPotBlock.java b/net/minecraft/world/level/block/DecoratedPotBlock.java index bde0df50..84884019 100644 --- a/net/minecraft/world/level/block/DecoratedPotBlock.java +++ b/net/minecraft/world/level/block/DecoratedPotBlock.java @@ -30,10 +30,9 @@ import net.minecraft.world.level.ScheduledTickAccess; import net.minecraft.world.level.block.entity.BlockEntity; import net.minecraft.world.level.block.entity.DecoratedPotBlockEntity; import net.minecraft.world.level.block.entity.PotDecorations; -import net.minecraft.world.level.block.entity.DecoratedPotBlockEntity.WobbleStyle; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition.Builder; +import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.world.level.block.state.properties.BlockStateProperties; import net.minecraft.world.level.block.state.properties.BooleanProperty; import net.minecraft.world.level.block.state.properties.EnumProperty; @@ -41,6 +40,7 @@ import net.minecraft.world.level.gameevent.GameEvent; import net.minecraft.world.level.material.FluidState; import net.minecraft.world.level.material.Fluids; import net.minecraft.world.level.pathfinder.PathComputationType; +import net.minecraft.world.level.storage.loot.LootParams; import net.minecraft.world.level.storage.loot.parameters.LootContextParams; import net.minecraft.world.phys.BlockHitResult; import net.minecraft.world.phys.shapes.CollisionContext; @@ -104,7 +104,7 @@ public class DecoratedPotBlock extends BaseEntityBlock implements SimpleWaterlog if (!stack.isEmpty() && (itemStack.isEmpty() || ItemStack.isSameItemSameComponents(itemStack, stack) && itemStack.getCount() < itemStack.getMaxStackSize()) ) { - decoratedPotBlockEntity.wobble(WobbleStyle.POSITIVE); + decoratedPotBlockEntity.wobble(DecoratedPotBlockEntity.WobbleStyle.POSITIVE); player.awardStat(Stats.ITEM_USED.get(stack.getItem())); ItemStack itemStack2 = stack.consumeAndReturn(1, player); float f; @@ -137,7 +137,7 @@ public class DecoratedPotBlock extends BaseEntityBlock implements SimpleWaterlog protected InteractionResult useWithoutItem(BlockState state, Level level, BlockPos pos, Player player, BlockHitResult hitResult) { if (level.getBlockEntity(pos) instanceof DecoratedPotBlockEntity decoratedPotBlockEntity) { level.playSound(null, pos, SoundEvents.DECORATED_POT_INSERT_FAIL, SoundSource.BLOCKS, 1.0F, 1.0F); - decoratedPotBlockEntity.wobble(WobbleStyle.NEGATIVE); + decoratedPotBlockEntity.wobble(DecoratedPotBlockEntity.WobbleStyle.NEGATIVE); level.gameEvent(player, GameEvent.BLOCK_CHANGE, pos); return InteractionResult.SUCCESS; } else { @@ -156,7 +156,7 @@ public class DecoratedPotBlock extends BaseEntityBlock implements SimpleWaterlog } @Override - protected void createBlockStateDefinition(Builder builder) { + protected void createBlockStateDefinition(StateDefinition.Builder builder) { builder.add(HORIZONTAL_FACING, WATERLOGGED, CRACKED); } @@ -172,7 +172,7 @@ public class DecoratedPotBlock extends BaseEntityBlock implements SimpleWaterlog } @Override - protected List getDrops(BlockState state, net.minecraft.world.level.storage.loot.LootParams.Builder params) { + protected List getDrops(BlockState state, LootParams.Builder params) { BlockEntity blockEntity = params.getOptionalParameter(LootContextParams.BLOCK_ENTITY); if (blockEntity instanceof DecoratedPotBlockEntity decoratedPotBlockEntity) { params.withDynamicDrop(SHERDS_DYNAMIC_DROP_ID, consumer -> { diff --git a/net/minecraft/world/level/block/DispenserBlock.java b/net/minecraft/world/level/block/DispenserBlock.java index 64a3e162..63724810 100644 --- a/net/minecraft/world/level/block/DispenserBlock.java +++ b/net/minecraft/world/level/block/DispenserBlock.java @@ -31,12 +31,11 @@ import net.minecraft.world.level.block.entity.DispenserBlockEntity; import net.minecraft.world.level.block.entity.DropperBlockEntity; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition.Builder; +import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.world.level.block.state.properties.BlockStateProperties; import net.minecraft.world.level.block.state.properties.BooleanProperty; import net.minecraft.world.level.block.state.properties.EnumProperty; import net.minecraft.world.level.gameevent.GameEvent; -import net.minecraft.world.level.gameevent.GameEvent.Context; import net.minecraft.world.level.redstone.Orientation; import net.minecraft.world.phys.BlockHitResult; import net.minecraft.world.phys.Vec3; @@ -92,7 +91,7 @@ public class DispenserBlock extends BaseEntityBlock { int i = dispenserBlockEntity.getRandomSlot(level.random); if (i < 0) { level.levelEvent(1001, pos, 0); - level.gameEvent(GameEvent.BLOCK_ACTIVATE, pos, Context.of(dispenserBlockEntity.getBlockState())); + level.gameEvent(GameEvent.BLOCK_ACTIVATE, pos, GameEvent.Context.of(dispenserBlockEntity.getBlockState())); } else { ItemStack itemStack = dispenserBlockEntity.getItem(i); DispenseItemBehavior dispenseItemBehavior = this.getDispenseMethod(level, itemStack); @@ -179,7 +178,7 @@ public class DispenserBlock extends BaseEntityBlock { } @Override - protected void createBlockStateDefinition(Builder builder) { + protected void createBlockStateDefinition(StateDefinition.Builder builder) { builder.add(FACING, TRIGGERED); } } diff --git a/net/minecraft/world/level/block/HopperBlock.java b/net/minecraft/world/level/block/HopperBlock.java index ea8f2f4f..34e46b63 100644 --- a/net/minecraft/world/level/block/HopperBlock.java +++ b/net/minecraft/world/level/block/HopperBlock.java @@ -6,7 +6,6 @@ import java.util.Map; import java.util.function.Function; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; -import net.minecraft.core.Direction.Axis; import net.minecraft.server.level.ServerLevel; import net.minecraft.stats.Stats; import net.minecraft.world.Containers; @@ -24,7 +23,7 @@ import net.minecraft.world.level.block.entity.BlockEntityType; import net.minecraft.world.level.block.entity.HopperBlockEntity; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition.Builder; +import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.world.level.block.state.properties.BlockStateProperties; import net.minecraft.world.level.block.state.properties.BooleanProperty; import net.minecraft.world.level.block.state.properties.EnumProperty; @@ -84,7 +83,7 @@ public class HopperBlock extends BaseEntityBlock { @Override public BlockState getStateForPlacement(BlockPlaceContext context) { Direction direction = context.getClickedFace().getOpposite(); - return this.defaultBlockState().setValue(FACING, direction.getAxis() == Axis.Y ? Direction.DOWN : direction).setValue(ENABLED, true); + return this.defaultBlockState().setValue(FACING, direction.getAxis() == Direction.Axis.Y ? Direction.DOWN : direction).setValue(ENABLED, true); } @Override @@ -153,7 +152,7 @@ public class HopperBlock extends BaseEntityBlock { } @Override - protected void createBlockStateDefinition(Builder builder) { + protected void createBlockStateDefinition(StateDefinition.Builder builder) { builder.add(FACING, ENABLED); } diff --git a/net/minecraft/world/level/block/JukeboxBlock.java b/net/minecraft/world/level/block/JukeboxBlock.java index a6abc46c..506bb179 100644 --- a/net/minecraft/world/level/block/JukeboxBlock.java +++ b/net/minecraft/world/level/block/JukeboxBlock.java @@ -21,7 +21,7 @@ import net.minecraft.world.level.block.entity.BlockEntityType; import net.minecraft.world.level.block.entity.JukeboxBlockEntity; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition.Builder; +import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.world.level.block.state.properties.BlockStateProperties; import net.minecraft.world.level.block.state.properties.BooleanProperty; import net.minecraft.world.phys.BlockHitResult; @@ -104,7 +104,7 @@ public class JukeboxBlock extends BaseEntityBlock { } @Override - protected void createBlockStateDefinition(Builder builder) { + protected void createBlockStateDefinition(StateDefinition.Builder builder) { builder.add(HAS_RECORD); } diff --git a/net/minecraft/world/level/block/LecternBlock.java b/net/minecraft/world/level/block/LecternBlock.java index 1e5b493f..c52ba316 100644 --- a/net/minecraft/world/level/block/LecternBlock.java +++ b/net/minecraft/world/level/block/LecternBlock.java @@ -26,12 +26,11 @@ import net.minecraft.world.level.block.entity.BlockEntity; import net.minecraft.world.level.block.entity.LecternBlockEntity; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition.Builder; +import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.world.level.block.state.properties.BlockStateProperties; import net.minecraft.world.level.block.state.properties.BooleanProperty; import net.minecraft.world.level.block.state.properties.EnumProperty; import net.minecraft.world.level.gameevent.GameEvent; -import net.minecraft.world.level.gameevent.GameEvent.Context; import net.minecraft.world.level.pathfinder.PathComputationType; import net.minecraft.world.level.redstone.ExperimentalRedstoneUtils; import net.minecraft.world.level.redstone.Orientation; @@ -111,7 +110,7 @@ public class LecternBlock extends BaseEntityBlock { } @Override - protected void createBlockStateDefinition(Builder builder) { + protected void createBlockStateDefinition(StateDefinition.Builder builder) { builder.add(FACING, POWERED, HAS_BOOK); } @@ -143,7 +142,7 @@ public class LecternBlock extends BaseEntityBlock { public static void resetBookState(@Nullable Entity entity, Level level, BlockPos pos, BlockState state, boolean hasBook) { BlockState blockState = state.setValue(POWERED, false).setValue(HAS_BOOK, hasBook); level.setBlock(pos, blockState, 3); - level.gameEvent(GameEvent.BLOCK_CHANGE, pos, Context.of(entity, blockState)); + level.gameEvent(GameEvent.BLOCK_CHANGE, pos, GameEvent.Context.of(entity, blockState)); updateBelow(level, pos, state); } diff --git a/net/minecraft/world/level/block/SculkCatalystBlock.java b/net/minecraft/world/level/block/SculkCatalystBlock.java index 95280ec9..a2e67660 100644 --- a/net/minecraft/world/level/block/SculkCatalystBlock.java +++ b/net/minecraft/world/level/block/SculkCatalystBlock.java @@ -14,7 +14,7 @@ import net.minecraft.world.level.block.entity.BlockEntityType; import net.minecraft.world.level.block.entity.SculkCatalystBlockEntity; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition.Builder; +import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.world.level.block.state.properties.BlockStateProperties; import net.minecraft.world.level.block.state.properties.BooleanProperty; import org.jetbrains.annotations.Nullable; @@ -35,7 +35,7 @@ public class SculkCatalystBlock extends BaseEntityBlock { } @Override - protected void createBlockStateDefinition(Builder builder) { + protected void createBlockStateDefinition(StateDefinition.Builder builder) { builder.add(PULSE); } diff --git a/net/minecraft/world/level/block/SculkSensorBlock.java b/net/minecraft/world/level/block/SculkSensorBlock.java index 63211f58..d45ed8e6 100644 --- a/net/minecraft/world/level/block/SculkSensorBlock.java +++ b/net/minecraft/world/level/block/SculkSensorBlock.java @@ -26,16 +26,14 @@ import net.minecraft.world.level.block.entity.BlockEntityType; import net.minecraft.world.level.block.entity.SculkSensorBlockEntity; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition.Builder; +import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.world.level.block.state.properties.BlockStateProperties; import net.minecraft.world.level.block.state.properties.BooleanProperty; import net.minecraft.world.level.block.state.properties.EnumProperty; import net.minecraft.world.level.block.state.properties.IntegerProperty; import net.minecraft.world.level.block.state.properties.SculkSensorPhase; import net.minecraft.world.level.gameevent.GameEvent; -import net.minecraft.world.level.gameevent.GameEvent.Context; import net.minecraft.world.level.gameevent.vibrations.VibrationSystem; -import net.minecraft.world.level.gameevent.vibrations.VibrationSystem.Ticker; import net.minecraft.world.level.material.FluidState; import net.minecraft.world.level.material.Fluids; import net.minecraft.world.level.pathfinder.PathComputationType; @@ -103,8 +101,8 @@ public class SculkSensorBlock extends BaseEntityBlock implements SimpleWaterlogg && entity.getType() != EntityType.WARDEN && level.getBlockEntity(pos) instanceof SculkSensorBlockEntity sculkSensorBlockEntity && level instanceof ServerLevel serverLevel - && sculkSensorBlockEntity.getVibrationUser().canReceiveVibration(serverLevel, pos, GameEvent.STEP, Context.of(state))) { - sculkSensorBlockEntity.getListener().forceScheduleVibration(serverLevel, GameEvent.STEP, Context.of(entity), entity.position()); + && sculkSensorBlockEntity.getVibrationUser().canReceiveVibration(serverLevel, pos, GameEvent.STEP, GameEvent.Context.of(state))) { + sculkSensorBlockEntity.getListener().forceScheduleVibration(serverLevel, GameEvent.STEP, GameEvent.Context.of(entity), entity.position()); } super.stepOn(level, pos, state, entity); @@ -163,7 +161,7 @@ public class SculkSensorBlock extends BaseEntityBlock implements SimpleWaterlogg ? createTickerHelper( blockEntityType, BlockEntityType.SCULK_SENSOR, - (levelx, blockPos, blockState, sculkSensorBlockEntity) -> Ticker.tick( + (levelx, blockPos, blockState, sculkSensorBlockEntity) -> VibrationSystem.Ticker.tick( levelx, sculkSensorBlockEntity.getVibrationData(), sculkSensorBlockEntity.getVibrationUser() ) ) @@ -227,7 +225,7 @@ public class SculkSensorBlock extends BaseEntityBlock implements SimpleWaterlogg BlockPos blockPos = pos.relative(direction); BlockState blockState = level.getBlockState(blockPos); if (blockState.is(BlockTags.VIBRATION_RESONATORS)) { - level.gameEvent(VibrationSystem.getResonanceEventByFrequency(frequency), blockPos, Context.of(entity, blockState)); + level.gameEvent(VibrationSystem.getResonanceEventByFrequency(frequency), blockPos, GameEvent.Context.of(entity, blockState)); float f = RESONANCE_PITCH_BEND[frequency]; level.playSound(null, blockPos, SoundEvents.AMETHYST_BLOCK_RESONATE, SoundSource.BLOCKS, 1.0F, f); } @@ -249,7 +247,7 @@ public class SculkSensorBlock extends BaseEntityBlock implements SimpleWaterlogg } @Override - protected void createBlockStateDefinition(Builder builder) { + protected void createBlockStateDefinition(StateDefinition.Builder builder) { builder.add(PHASE, POWER, WATERLOGGED); } diff --git a/net/minecraft/world/level/block/SculkShriekerBlock.java b/net/minecraft/world/level/block/SculkShriekerBlock.java index d4c6797f..0ef08aa6 100644 --- a/net/minecraft/world/level/block/SculkShriekerBlock.java +++ b/net/minecraft/world/level/block/SculkShriekerBlock.java @@ -3,7 +3,6 @@ package net.minecraft.world.level.block; import com.mojang.serialization.MapCodec; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; -import net.minecraft.core.Direction.Axis; import net.minecraft.server.level.ServerLevel; import net.minecraft.server.level.ServerPlayer; import net.minecraft.util.RandomSource; @@ -21,10 +20,10 @@ import net.minecraft.world.level.block.entity.BlockEntityType; import net.minecraft.world.level.block.entity.SculkShriekerBlockEntity; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition.Builder; +import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.world.level.block.state.properties.BlockStateProperties; import net.minecraft.world.level.block.state.properties.BooleanProperty; -import net.minecraft.world.level.gameevent.vibrations.VibrationSystem.Ticker; +import net.minecraft.world.level.gameevent.vibrations.VibrationSystem; import net.minecraft.world.level.material.FluidState; import net.minecraft.world.level.material.Fluids; import net.minecraft.world.phys.shapes.CollisionContext; @@ -37,7 +36,7 @@ public class SculkShriekerBlock extends BaseEntityBlock implements SimpleWaterlo public static final BooleanProperty WATERLOGGED = BlockStateProperties.WATERLOGGED; public static final BooleanProperty CAN_SUMMON = BlockStateProperties.CAN_SUMMON; private static final VoxelShape SHAPE_COLLISION = Block.column(16.0, 0.0, 8.0); - public static final double TOP_Y = SHAPE_COLLISION.max(Axis.Y); + public static final double TOP_Y = SHAPE_COLLISION.max(Direction.Axis.Y); @Override public MapCodec codec() { @@ -50,7 +49,7 @@ public class SculkShriekerBlock extends BaseEntityBlock implements SimpleWaterlo } @Override - protected void createBlockStateDefinition(Builder builder) { + protected void createBlockStateDefinition(StateDefinition.Builder builder) { builder.add(SHRIEKING); builder.add(WATERLOGGED); builder.add(CAN_SUMMON); @@ -142,7 +141,7 @@ public class SculkShriekerBlock extends BaseEntityBlock implements SimpleWaterlo ? BaseEntityBlock.createTickerHelper( blockEntityType, BlockEntityType.SCULK_SHRIEKER, - (levelx, blockPos, blockState, sculkShriekerBlockEntity) -> Ticker.tick( + (levelx, blockPos, blockState, sculkShriekerBlockEntity) -> VibrationSystem.Ticker.tick( levelx, sculkShriekerBlockEntity.getVibrationData(), sculkShriekerBlockEntity.getVibrationUser() ) ) diff --git a/net/minecraft/world/level/block/ShulkerBoxBlock.java b/net/minecraft/world/level/block/ShulkerBoxBlock.java index fd84a15f..042caf35 100644 --- a/net/minecraft/world/level/block/ShulkerBoxBlock.java +++ b/net/minecraft/world/level/block/ShulkerBoxBlock.java @@ -26,11 +26,11 @@ import net.minecraft.world.level.block.entity.BlockEntity; import net.minecraft.world.level.block.entity.BlockEntityTicker; import net.minecraft.world.level.block.entity.BlockEntityType; import net.minecraft.world.level.block.entity.ShulkerBoxBlockEntity; -import net.minecraft.world.level.block.entity.ShulkerBoxBlockEntity.AnimationStatus; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition.Builder; +import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.world.level.block.state.properties.EnumProperty; +import net.minecraft.world.level.storage.loot.LootParams; import net.minecraft.world.level.storage.loot.parameters.LootContextParams; import net.minecraft.world.phys.AABB; import net.minecraft.world.phys.BlockHitResult; @@ -88,7 +88,7 @@ public class ShulkerBoxBlock extends BaseEntityBlock { } private static boolean canOpen(BlockState state, Level level, BlockPos pos, ShulkerBoxBlockEntity blockEntity) { - if (blockEntity.getAnimationStatus() != AnimationStatus.CLOSED) { + if (blockEntity.getAnimationStatus() != ShulkerBoxBlockEntity.AnimationStatus.CLOSED) { return true; } else { AABB aABB = Shulker.getProgressDeltaAabb(1.0F, state.getValue(FACING), 0.0F, 0.5F, pos.getBottomCenter()).deflate(1.0E-6); @@ -102,7 +102,7 @@ public class ShulkerBoxBlock extends BaseEntityBlock { } @Override - protected void createBlockStateDefinition(Builder builder) { + protected void createBlockStateDefinition(StateDefinition.Builder builder) { builder.add(FACING); } @@ -125,7 +125,7 @@ public class ShulkerBoxBlock extends BaseEntityBlock { } @Override - protected List getDrops(BlockState state, net.minecraft.world.level.storage.loot.LootParams.Builder params) { + protected List getDrops(BlockState state, LootParams.Builder params) { BlockEntity blockEntity = params.getOptionalParameter(LootContextParams.BLOCK_ENTITY); if (blockEntity instanceof ShulkerBoxBlockEntity shulkerBoxBlockEntity) { params = params.withDynamicDrop(CONTENTS, consumer -> { diff --git a/net/minecraft/world/level/block/SignBlock.java b/net/minecraft/world/level/block/SignBlock.java index 4a421792..955338c5 100644 --- a/net/minecraft/world/level/block/SignBlock.java +++ b/net/minecraft/world/level/block/SignBlock.java @@ -32,7 +32,6 @@ import net.minecraft.world.level.block.state.properties.BlockStateProperties; import net.minecraft.world.level.block.state.properties.BooleanProperty; import net.minecraft.world.level.block.state.properties.WoodType; import net.minecraft.world.level.gameevent.GameEvent; -import net.minecraft.world.level.gameevent.GameEvent.Context; import net.minecraft.world.level.material.FluidState; import net.minecraft.world.level.material.Fluids; import net.minecraft.world.phys.BlockHitResult; @@ -100,7 +99,7 @@ public abstract class SignBlock extends BaseEntityBlock implements SimpleWaterlo if (signApplicator2.canApplyToSign(signBlockEntity.getText(bl2), player) && signApplicator2.tryApplyToSign(serverLevel, signBlockEntity, bl2, player)) { signBlockEntity.executeClickCommandsIfPresent(serverLevel, player, pos, bl2); player.awardStat(Stats.ITEM_USED.get(stack.getItem())); - serverLevel.gameEvent(GameEvent.BLOCK_CHANGE, signBlockEntity.getBlockPos(), Context.of(player, signBlockEntity.getBlockState())); + serverLevel.gameEvent(GameEvent.BLOCK_CHANGE, signBlockEntity.getBlockPos(), GameEvent.Context.of(player, signBlockEntity.getBlockState())); stack.consume(1, player); return InteractionResult.SUCCESS; } else { diff --git a/net/minecraft/world/level/block/StructureBlock.java b/net/minecraft/world/level/block/StructureBlock.java index 116ccea9..2df4c461 100644 --- a/net/minecraft/world/level/block/StructureBlock.java +++ b/net/minecraft/world/level/block/StructureBlock.java @@ -12,7 +12,7 @@ import net.minecraft.world.level.block.entity.BlockEntity; import net.minecraft.world.level.block.entity.StructureBlockEntity; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition.Builder; +import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.world.level.block.state.properties.BlockStateProperties; import net.minecraft.world.level.block.state.properties.EnumProperty; import net.minecraft.world.level.block.state.properties.StructureMode; @@ -62,7 +62,7 @@ public class StructureBlock extends BaseEntityBlock implements GameMasterBlock { } @Override - protected void createBlockStateDefinition(Builder builder) { + protected void createBlockStateDefinition(StateDefinition.Builder builder) { builder.add(MODE); } diff --git a/net/minecraft/world/level/block/TestBlock.java b/net/minecraft/world/level/block/TestBlock.java index 5bc9d761..2ba38152 100644 --- a/net/minecraft/world/level/block/TestBlock.java +++ b/net/minecraft/world/level/block/TestBlock.java @@ -18,7 +18,7 @@ import net.minecraft.world.level.block.entity.BlockEntity; import net.minecraft.world.level.block.entity.TestBlockEntity; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition.Builder; +import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.world.level.block.state.properties.BlockStateProperties; import net.minecraft.world.level.block.state.properties.EnumProperty; import net.minecraft.world.level.block.state.properties.TestBlockMode; @@ -55,7 +55,7 @@ public class TestBlock extends BaseEntityBlock implements GameMasterBlock { } @Override - protected void createBlockStateDefinition(Builder builder) { + protected void createBlockStateDefinition(StateDefinition.Builder builder) { builder.add(MODE); } diff --git a/net/minecraft/world/level/block/TrialSpawnerBlock.java b/net/minecraft/world/level/block/TrialSpawnerBlock.java index 48fa07e2..1f57178b 100644 --- a/net/minecraft/world/level/block/TrialSpawnerBlock.java +++ b/net/minecraft/world/level/block/TrialSpawnerBlock.java @@ -11,7 +11,7 @@ import net.minecraft.world.level.block.entity.TrialSpawnerBlockEntity; import net.minecraft.world.level.block.entity.trialspawner.TrialSpawnerState; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition.Builder; +import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.world.level.block.state.properties.BlockStateProperties; import net.minecraft.world.level.block.state.properties.BooleanProperty; import net.minecraft.world.level.block.state.properties.EnumProperty; @@ -33,7 +33,7 @@ public class TrialSpawnerBlock extends BaseEntityBlock { } @Override - protected void createBlockStateDefinition(Builder builder) { + protected void createBlockStateDefinition(StateDefinition.Builder builder) { builder.add(STATE, OMINOUS); } diff --git a/net/minecraft/world/level/block/VaultBlock.java b/net/minecraft/world/level/block/VaultBlock.java index a2346619..ff5a0c92 100644 --- a/net/minecraft/world/level/block/VaultBlock.java +++ b/net/minecraft/world/level/block/VaultBlock.java @@ -15,11 +15,9 @@ import net.minecraft.world.level.block.entity.BlockEntityTicker; import net.minecraft.world.level.block.entity.BlockEntityType; import net.minecraft.world.level.block.entity.vault.VaultBlockEntity; import net.minecraft.world.level.block.entity.vault.VaultState; -import net.minecraft.world.level.block.entity.vault.VaultBlockEntity.Client; -import net.minecraft.world.level.block.entity.vault.VaultBlockEntity.Server; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition.Builder; +import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.world.level.block.state.properties.BlockStateProperties; import net.minecraft.world.level.block.state.properties.BooleanProperty; import net.minecraft.world.level.block.state.properties.EnumProperty; @@ -51,7 +49,7 @@ public class VaultBlock extends BaseEntityBlock { return InteractionResult.TRY_WITH_EMPTY_HAND; } - Server.tryInsertKey( + VaultBlockEntity.Server.tryInsertKey( serverLevel, pos, state, vaultBlockEntity.getConfig(), vaultBlockEntity.getServerData(), vaultBlockEntity.getSharedData(), player, stack ); } @@ -69,7 +67,7 @@ public class VaultBlock extends BaseEntityBlock { } @Override - protected void createBlockStateDefinition(Builder builder) { + protected void createBlockStateDefinition(StateDefinition.Builder builder) { builder.add(FACING, STATE, OMINOUS); } @@ -80,14 +78,14 @@ public class VaultBlock extends BaseEntityBlock { ? createTickerHelper( blockEntityType, BlockEntityType.VAULT, - (levelx, blockPos, blockState, vaultBlockEntity) -> Server.tick( + (levelx, blockPos, blockState, vaultBlockEntity) -> VaultBlockEntity.Server.tick( serverLevel, blockPos, blockState, vaultBlockEntity.getConfig(), vaultBlockEntity.getServerData(), vaultBlockEntity.getSharedData() ) ) : createTickerHelper( blockEntityType, BlockEntityType.VAULT, - (levelx, blockPos, blockState, vaultBlockEntity) -> Client.tick( + (levelx, blockPos, blockState, vaultBlockEntity) -> VaultBlockEntity.Client.tick( levelx, blockPos, blockState, vaultBlockEntity.getClientData(), vaultBlockEntity.getSharedData() ) ); diff --git a/net/minecraft/world/level/block/piston/MovingPistonBlock.java b/net/minecraft/world/level/block/piston/MovingPistonBlock.java index eb100861..878ff3d2 100644 --- a/net/minecraft/world/level/block/piston/MovingPistonBlock.java +++ b/net/minecraft/world/level/block/piston/MovingPistonBlock.java @@ -22,10 +22,11 @@ import net.minecraft.world.level.block.entity.BlockEntityTicker; import net.minecraft.world.level.block.entity.BlockEntityType; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition.Builder; +import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.world.level.block.state.properties.EnumProperty; import net.minecraft.world.level.block.state.properties.PistonType; import net.minecraft.world.level.pathfinder.PathComputationType; +import net.minecraft.world.level.storage.loot.LootParams; import net.minecraft.world.level.storage.loot.parameters.LootContextParams; import net.minecraft.world.phys.BlockHitResult; import net.minecraft.world.phys.shapes.CollisionContext; @@ -86,7 +87,7 @@ public class MovingPistonBlock extends BaseEntityBlock { } @Override - protected List getDrops(BlockState state, net.minecraft.world.level.storage.loot.LootParams.Builder params) { + protected List getDrops(BlockState state, LootParams.Builder params) { PistonMovingBlockEntity pistonMovingBlockEntity = this.getBlockEntity(params.getLevel(), BlockPos.containing(params.getParameter(LootContextParams.ORIGIN))); return pistonMovingBlockEntity == null ? Collections.emptyList() : pistonMovingBlockEntity.getMovedState().getDrops(params); } @@ -129,7 +130,7 @@ public class MovingPistonBlock extends BaseEntityBlock { } @Override - protected void createBlockStateDefinition(Builder builder) { + protected void createBlockStateDefinition(StateDefinition.Builder builder) { builder.add(FACING, TYPE); } diff --git a/net/minecraft/world/level/block/state/BlockBehaviour.java b/net/minecraft/world/level/block/state/BlockBehaviour.java index e817f238..add1452f 100644 --- a/net/minecraft/world/level/block/state/BlockBehaviour.java +++ b/net/minecraft/world/level/block/state/BlockBehaviour.java @@ -7,6 +7,7 @@ import it.unimi.dsi.fastutil.objects.Reference2ObjectArrayMap; import java.util.Arrays; import java.util.Collections; import java.util.List; +import java.util.Locale; import java.util.Objects; import java.util.Optional; import java.util.function.BiConsumer; @@ -20,7 +21,7 @@ import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; import net.minecraft.core.Holder; import net.minecraft.core.HolderSet; -import net.minecraft.core.BlockPos.MutableBlockPos; +import net.minecraft.core.registries.BuiltInRegistries; import net.minecraft.core.registries.Registries; import net.minecraft.network.protocol.game.DebugPackets; import net.minecraft.resources.DependantName; @@ -53,7 +54,6 @@ import net.minecraft.world.level.Level; import net.minecraft.world.level.LevelAccessor; import net.minecraft.world.level.LevelReader; import net.minecraft.world.level.ScheduledTickAccess; -import net.minecraft.world.level.Explosion.BlockInteraction; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.Blocks; import net.minecraft.world.level.block.EntityBlock; @@ -65,7 +65,6 @@ import net.minecraft.world.level.block.SupportType; import net.minecraft.world.level.block.entity.BlockEntity; import net.minecraft.world.level.block.entity.BlockEntityTicker; import net.minecraft.world.level.block.entity.BlockEntityType; -import net.minecraft.world.level.block.state.BlockBehaviour.BlockStateBase.Cache; import net.minecraft.world.level.block.state.properties.NoteBlockInstrument; import net.minecraft.world.level.block.state.properties.Property; import net.minecraft.world.level.material.Fluid; @@ -77,7 +76,6 @@ import net.minecraft.world.level.pathfinder.PathComputationType; import net.minecraft.world.level.redstone.Orientation; import net.minecraft.world.level.storage.loot.LootParams; import net.minecraft.world.level.storage.loot.LootTable; -import net.minecraft.world.level.storage.loot.LootParams.Builder; import net.minecraft.world.level.storage.loot.parameters.LootContextParamSets; import net.minecraft.world.level.storage.loot.parameters.LootContextParams; import net.minecraft.world.phys.AABB; @@ -193,17 +191,17 @@ public abstract class BlockBehaviour implements FeatureElement { } protected void onExplosionHit(BlockState state, ServerLevel level, BlockPos pos, Explosion explosion, BiConsumer dropConsumer) { - if (!state.isAir() && explosion.getBlockInteraction() != BlockInteraction.TRIGGER_BLOCK) { + if (!state.isAir() && explosion.getBlockInteraction() != Explosion.BlockInteraction.TRIGGER_BLOCK) { Block block = state.getBlock(); boolean bl = explosion.getIndirectSourceEntity() instanceof Player; if (block.dropFromExplosion(explosion)) { BlockEntity blockEntity = state.hasBlockEntity() ? level.getBlockEntity(pos) : null; - Builder builder = new Builder(level) + LootParams.Builder builder = new LootParams.Builder(level) .withParameter(LootContextParams.ORIGIN, Vec3.atCenterOf(pos)) .withParameter(LootContextParams.TOOL, ItemStack.EMPTY) .withOptionalParameter(LootContextParams.BLOCK_ENTITY, blockEntity) .withOptionalParameter(LootContextParams.THIS_ENTITY, explosion.getDirectSourceEntity()); - if (explosion.getBlockInteraction() == BlockInteraction.DESTROY_WITH_DECAY) { + if (explosion.getBlockInteraction() == Explosion.BlockInteraction.DESTROY_WITH_DECAY) { builder.withParameter(LootContextParams.EXPLOSION_RADIUS, explosion.radius()); } @@ -294,7 +292,7 @@ public abstract class BlockBehaviour implements FeatureElement { return state.canBeReplaced() || !state.isSolid(); } - protected List getDrops(BlockState state, Builder params) { + protected List getDrops(BlockState state, LootParams.Builder params) { if (this.drops.isEmpty()) { return Collections.emptyList(); } else { @@ -499,7 +497,7 @@ public abstract class BlockBehaviour implements FeatureElement { private final NoteBlockInstrument instrument; private final boolean replaceable; @Nullable - private Cache cache; + private BlockBehaviour.BlockStateBase.Cache cache; private FluidState fluidState = Fluids.EMPTY.defaultFluidState(); private boolean isRandomlyTicking; private boolean solidRender; @@ -554,7 +552,7 @@ public abstract class BlockBehaviour implements FeatureElement { this.fluidState = this.owner.getFluidState(this.asState()); this.isRandomlyTicking = this.owner.isRandomlyTicking(this.asState()); if (!this.getBlock().hasDynamicShape()) { - this.cache = new Cache(this.asState()); + this.cache = new BlockBehaviour.BlockStateBase.Cache(this.asState()); } this.legacySolid = this.calculateSolid(); @@ -784,7 +782,7 @@ public abstract class BlockBehaviour implements FeatureElement { } public final void updateNeighbourShapes(LevelAccessor level, BlockPos pos, int flags, int recursionLeft) { - MutableBlockPos mutableBlockPos = new MutableBlockPos(); + BlockPos.MutableBlockPos mutableBlockPos = new BlockPos.MutableBlockPos(); for (Direction direction : BlockBehaviour.UPDATE_SHAPE_ORDER) { mutableBlockPos.setWithOffset(pos, direction); @@ -828,7 +826,7 @@ public abstract class BlockBehaviour implements FeatureElement { this.getBlock().spawnAfterBreak(this.asState(), level, pos, stack, dropExperience); } - public List getDrops(Builder lootParams) { + public List getDrops(LootParams.Builder lootParams) { return this.getBlock().getDrops(this.asState(), lootParams); } @@ -979,6 +977,47 @@ public abstract class BlockBehaviour implements FeatureElement { public NoteBlockInstrument instrument() { return this.instrument; } + + static final class Cache { + private static final Direction[] DIRECTIONS = Direction.values(); + private static final int SUPPORT_TYPE_COUNT = SupportType.values().length; + protected final VoxelShape collisionShape; + protected final boolean largeCollisionShape; + private final boolean[] faceSturdy; + protected final boolean isCollisionShapeFullBlock; + + Cache(BlockState state) { + Block block = state.getBlock(); + this.collisionShape = block.getCollisionShape(state, EmptyBlockGetter.INSTANCE, BlockPos.ZERO, CollisionContext.empty()); + if (!this.collisionShape.isEmpty() && state.hasOffsetFunction()) { + throw new IllegalStateException( + String.format( + Locale.ROOT, "%s has a collision shape and an offset type, but is not marked as dynamicShape in its properties.", BuiltInRegistries.BLOCK.getKey(block) + ) + ); + } else { + this.largeCollisionShape = Arrays.stream(Direction.Axis.values()) + .anyMatch(axis -> this.collisionShape.min(axis) < 0.0 || this.collisionShape.max(axis) > 1.0); + this.faceSturdy = new boolean[DIRECTIONS.length * SUPPORT_TYPE_COUNT]; + + for (Direction direction : DIRECTIONS) { + for (SupportType supportType : SupportType.values()) { + this.faceSturdy[getFaceSupportIndex(direction, supportType)] = supportType.isSupporting(state, EmptyBlockGetter.INSTANCE, BlockPos.ZERO, direction); + } + } + + this.isCollisionShapeFullBlock = Block.isShapeFullBlock(state.getCollisionShape(EmptyBlockGetter.INSTANCE, BlockPos.ZERO)); + } + } + + public boolean isFaceSturdy(Direction direction, SupportType supportType) { + return this.faceSturdy[getFaceSupportIndex(direction, supportType)]; + } + + private static int getFaceSupportIndex(Direction direction, SupportType supportType) { + return direction.ordinal() * SUPPORT_TYPE_COUNT + supportType.ordinal(); + } + } } @FunctionalInterface diff --git a/net/minecraft/world/level/block/state/StateHolder.java b/net/minecraft/world/level/block/state/StateHolder.java index 641b39c0..2897d666 100644 --- a/net/minecraft/world/level/block/state/StateHolder.java +++ b/net/minecraft/world/level/block/state/StateHolder.java @@ -161,12 +161,12 @@ public abstract class StateHolder { return this.values; } - protected static > Codec codec(Codec ownerCodec, Function defaultStateGetter) { - return ownerCodec.dispatch( + protected static > Codec codec(Codec propertyMap, Function holderFunction) { + return propertyMap.dispatch( "Name", stateHolder -> stateHolder.owner, object -> { - S stateHolder = (S)defaultStateGetter.apply(object); + S stateHolder = (S)holderFunction.apply(object); return stateHolder.getValues().isEmpty() ? MapCodec.unit(stateHolder) : stateHolder.propertiesCodec.codec().lenientOptionalFieldOf("Properties").xmap(optional -> (StateHolder)optional.orElse(stateHolder), Optional::of); diff --git a/version.json b/version.json index 91e9ed7b..46e36a46 100644 --- a/version.json +++ b/version.json @@ -1,14 +1,14 @@ { - "id": "1.21.8", - "name": "1.21.8", - "world_version": 4440, + "id": "1.21.7", + "name": "1.21.7", + "world_version": 4438, "series_id": "main", "protocol_version": 772, "pack_version": { "resource": 64, "data": 81 }, - "build_time": "2025-07-17T12:00:57+00:00", + "build_time": "2025-06-30T09:29:28+00:00", "java_component": "java-runtime-delta", "java_version": 21, "stable": true,