Compare commits
	
		
			1 commit
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 2033d36e57 | 
					 1254 changed files with 2497 additions and 2453 deletions
				
			
		
							
								
								
									
										77
									
								
								com/mojang/blaze3d/GraphicsWorkarounds.java
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										77
									
								
								com/mojang/blaze3d/GraphicsWorkarounds.java
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,77 @@ | ||||||
|  | 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<String> 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<String> INTEL_GEN11_ATOM = List.of("x6211e", "x6212re", "x6214re", "x6413e", "x6414re", "x6416re", "x6425e", "x6425re", "x6427fe"); | ||||||
|  | 	private static final List<String> INTEL_GEN11_CELERON = List.of("j6412", "j6413", "n4500", "n4505", "n5095", "n5095a", "n5100", "n5105", "n6210", "n6211"); | ||||||
|  | 	private static final List<String> INTEL_GEN11_PENTIUM = List.of("6805", "j6426", "n6415", "n6000", "n6005"); | ||||||
|  | 	@Nullable | ||||||
|  | 	private static GraphicsWorkarounds instance; | ||||||
|  | 	private final WeakReference<GpuDevice> 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); | ||||||
|  | 		} | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  | @ -1,7 +1,10 @@ | ||||||
| package com.mojang.blaze3d.opengl; | package com.mojang.blaze3d.opengl; | ||||||
| 
 | 
 | ||||||
| import com.google.common.collect.Sets; | import com.google.common.collect.Sets; | ||||||
| import com.mojang.blaze3d.pipeline.RenderPipeline; | 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.systems.RenderSystem; | import com.mojang.blaze3d.systems.RenderSystem; | ||||||
| import com.mojang.blaze3d.textures.TextureFormat; | import com.mojang.blaze3d.textures.TextureFormat; | ||||||
| import com.mojang.blaze3d.vertex.VertexFormat; | import com.mojang.blaze3d.vertex.VertexFormat; | ||||||
|  | @ -13,7 +16,7 @@ import java.util.Objects; | ||||||
| import java.util.Set; | import java.util.Set; | ||||||
| import net.fabricmc.api.EnvType; | import net.fabricmc.api.EnvType; | ||||||
| import net.fabricmc.api.Environment; | import net.fabricmc.api.Environment; | ||||||
| import net.minecraft.client.renderer.ShaderManager; | import net.minecraft.client.renderer.ShaderManager.CompilationException; | ||||||
| import org.jetbrains.annotations.Nullable; | import org.jetbrains.annotations.Nullable; | ||||||
| import org.jetbrains.annotations.VisibleForTesting; | import org.jetbrains.annotations.VisibleForTesting; | ||||||
| import org.lwjgl.opengl.GL31; | import org.lwjgl.opengl.GL31; | ||||||
|  | @ -33,10 +36,10 @@ public class GlProgram implements AutoCloseable { | ||||||
| 		this.debugLabel = debugLabel; | 		this.debugLabel = debugLabel; | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	public static GlProgram link(GlShaderModule vertexShader, GlShaderModule fragmentShader, VertexFormat vertexFormat, String debugLabel) throws ShaderManager.CompilationException { | 	public static GlProgram link(GlShaderModule vertexShader, GlShaderModule fragmentShader, VertexFormat vertexFormat, String debugLabel) throws CompilationException { | ||||||
| 		int i = GlStateManager.glCreateProgram(); | 		int i = GlStateManager.glCreateProgram(); | ||||||
| 		if (i <= 0) { | 		if (i <= 0) { | ||||||
| 			throw new ShaderManager.CompilationException("Could not create shader program (returned program ID " + i + ")"); | 			throw new CompilationException("Could not create shader program (returned program ID " + i + ")"); | ||||||
| 		} else { | 		} else { | ||||||
| 			int j = 0; | 			int j = 0; | ||||||
| 
 | 
 | ||||||
|  | @ -49,22 +52,26 @@ public class GlProgram implements AutoCloseable { | ||||||
| 			GlStateManager.glAttachShader(i, fragmentShader.getShaderId()); | 			GlStateManager.glAttachShader(i, fragmentShader.getShaderId()); | ||||||
| 			GlStateManager.glLinkProgram(i); | 			GlStateManager.glLinkProgram(i); | ||||||
| 			int k = GlStateManager.glGetProgrami(i, 35714); | 			int k = GlStateManager.glGetProgrami(i, 35714); | ||||||
| 			if (k == 0) { |  | ||||||
| 			String string = GlStateManager.glGetProgramInfoLog(i, 32768); | 			String string = GlStateManager.glGetProgramInfoLog(i, 32768); | ||||||
| 				throw new ShaderManager.CompilationException( | 			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( | ||||||
| 					"Error encountered when linking program containing VS " + vertexShader.getId() + " and FS " + fragmentShader.getId() + ". Log output: " + string | 					"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<RenderPipeline.UniformDescription> uniforms, List<String> samplers) { | 	public void setupUniforms(List<UniformDescription> uniforms, List<String> samplers) { | ||||||
| 		int i = 0; | 		int i = 0; | ||||||
| 		int j = 0; | 		int j = 0; | ||||||
| 
 | 
 | ||||||
| 		for (RenderPipeline.UniformDescription uniformDescription : uniforms) { | 		for (UniformDescription uniformDescription : uniforms) { | ||||||
| 			String string = uniformDescription.name(); | 			String string = uniformDescription.name(); | ||||||
| 
 | 
 | ||||||
| 			Object var10000_1 = switch (uniformDescription.type()) { | 			Object var10000_1 = switch (uniformDescription.type()) { | ||||||
|  | @ -75,7 +82,7 @@ public class GlProgram implements AutoCloseable { | ||||||
| 					} else { | 					} else { | ||||||
| 						int l = i++; | 						int l = i++; | ||||||
| 						GL31.glUniformBlockBinding(this.programId, k, l); | 						GL31.glUniformBlockBinding(this.programId, k, l); | ||||||
| 						yield new Uniform.Ubo(l); | 						yield new Ubo(l); | ||||||
| 					} | 					} | ||||||
| 				} | 				} | ||||||
| 				case TEXEL_BUFFER -> { | 				case TEXEL_BUFFER -> { | ||||||
|  | @ -85,7 +92,7 @@ public class GlProgram implements AutoCloseable { | ||||||
| 						yield null; | 						yield null; | ||||||
| 					} else { | 					} else { | ||||||
| 						int l = j++; | 						int l = j++; | ||||||
| 						yield new Uniform.Utb(k, l, (TextureFormat)Objects.requireNonNull(uniformDescription.textureFormat())); | 						yield new Utb(k, l, (TextureFormat)Objects.requireNonNull(uniformDescription.textureFormat())); | ||||||
| 					} | 					} | ||||||
| 				} | 				} | ||||||
| 			}; | 			}; | ||||||
|  | @ -102,7 +109,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); | 				LOGGER.warn("{} shader program does not use sampler {} defined in the pipeline. This might be a bug.", this.debugLabel, string2); | ||||||
| 			} else { | 			} else { | ||||||
| 				int n = j++; | 				int n = j++; | ||||||
| 				this.uniformsByName.put(string2, new Uniform.Sampler(m, n)); | 				this.uniformsByName.put(string2, new Sampler(m, n)); | ||||||
| 			} | 			} | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
|  | @ -114,7 +121,7 @@ public class GlProgram implements AutoCloseable { | ||||||
| 				if (!samplers.contains(string) && BUILT_IN_UNIFORMS.contains(string)) { | 				if (!samplers.contains(string) && BUILT_IN_UNIFORMS.contains(string)) { | ||||||
| 					int n = i++; | 					int n = i++; | ||||||
| 					GL31.glUniformBlockBinding(this.programId, p, n); | 					GL31.glUniformBlockBinding(this.programId, p, n); | ||||||
| 					this.uniformsByName.put(string, new Uniform.Ubo(n)); | 					this.uniformsByName.put(string, new Ubo(n)); | ||||||
| 				} else { | 				} else { | ||||||
| 					LOGGER.warn("Found unknown and unsupported uniform {} in {}", string, this.debugLabel); | 					LOGGER.warn("Found unknown and unsupported uniform {} in {}", string, this.debugLabel); | ||||||
| 				} | 				} | ||||||
|  |  | ||||||
|  | @ -2,6 +2,7 @@ package com.mojang.blaze3d.opengl; | ||||||
| 
 | 
 | ||||||
| import com.mojang.blaze3d.vertex.VertexFormat; | import com.mojang.blaze3d.vertex.VertexFormat; | ||||||
| import com.mojang.blaze3d.vertex.VertexFormatElement; | import com.mojang.blaze3d.vertex.VertexFormatElement; | ||||||
|  | import com.mojang.blaze3d.vertex.VertexFormatElement.Type; | ||||||
| import java.util.HashMap; | import java.util.HashMap; | ||||||
| import java.util.List; | import java.util.List; | ||||||
| import java.util.Map; | import java.util.Map; | ||||||
|  | @ -69,7 +70,7 @@ public abstract class VertexArrayCache { | ||||||
| 					case POSITION: | 					case POSITION: | ||||||
| 					case GENERIC: | 					case GENERIC: | ||||||
| 					case UV: | 					case UV: | ||||||
| 						if (vertexFormatElement.type() == VertexFormatElement.Type.FLOAT) { | 						if (vertexFormatElement.type() == Type.FLOAT) { | ||||||
| 							GlStateManager._vertexAttribPointer( | 							GlStateManager._vertexAttribPointer( | ||||||
| 								j, vertexFormatElement.count(), GlConst.toGl(vertexFormatElement.type()), false, i, vertexFormat.getOffset(vertexFormatElement) | 								j, vertexFormatElement.count(), GlConst.toGl(vertexFormatElement.type()), false, i, vertexFormat.getOffset(vertexFormatElement) | ||||||
| 							); | 							); | ||||||
|  | @ -111,7 +112,6 @@ public abstract class VertexArrayCache { | ||||||
| 			if (vertexArray == null) { | 			if (vertexArray == null) { | ||||||
| 				int i = GlStateManager._glGenVertexArrays(); | 				int i = GlStateManager._glGenVertexArrays(); | ||||||
| 				GlStateManager._glBindVertexArray(i); | 				GlStateManager._glBindVertexArray(i); | ||||||
| 				ARBVertexAttribBinding.glBindVertexBuffer(0, buffer.handle, 0L, format.getVertexSize()); |  | ||||||
| 				List<VertexFormatElement> list = format.getElements(); | 				List<VertexFormatElement> list = format.getElements(); | ||||||
| 
 | 
 | ||||||
| 				for (int j = 0; j < list.size(); j++) { | 				for (int j = 0; j < list.size(); j++) { | ||||||
|  | @ -121,7 +121,7 @@ public abstract class VertexArrayCache { | ||||||
| 						case POSITION: | 						case POSITION: | ||||||
| 						case GENERIC: | 						case GENERIC: | ||||||
| 						case UV: | 						case UV: | ||||||
| 							if (vertexFormatElement.type() == VertexFormatElement.Type.FLOAT) { | 							if (vertexFormatElement.type() == Type.FLOAT) { | ||||||
| 								ARBVertexAttribBinding.glVertexAttribFormat( | 								ARBVertexAttribBinding.glVertexAttribFormat( | ||||||
| 									j, vertexFormatElement.count(), GlConst.toGl(vertexFormatElement.type()), false, format.getOffset(vertexFormatElement) | 									j, vertexFormatElement.count(), GlConst.toGl(vertexFormatElement.type()), false, format.getOffset(vertexFormatElement) | ||||||
| 								); | 								); | ||||||
|  | @ -141,6 +141,7 @@ public abstract class VertexArrayCache { | ||||||
| 					ARBVertexAttribBinding.glVertexAttribBinding(j, 0); | 					ARBVertexAttribBinding.glVertexAttribBinding(j, 0); | ||||||
| 				} | 				} | ||||||
| 
 | 
 | ||||||
|  | 				ARBVertexAttribBinding.glBindVertexBuffer(0, buffer.handle, 0L, format.getVertexSize()); | ||||||
| 				VertexArrayCache.VertexArray vertexArray2 = new VertexArrayCache.VertexArray(i, format, buffer); | 				VertexArrayCache.VertexArray vertexArray2 = new VertexArrayCache.VertexArray(i, format, buffer); | ||||||
| 				this.debugLabels.applyLabel(vertexArray2); | 				this.debugLabels.applyLabel(vertexArray2); | ||||||
| 				this.cache.put(format, vertexArray2); | 				this.cache.put(format, vertexArray2); | ||||||
|  |  | ||||||
|  | @ -428,13 +428,13 @@ public final class NativeImage implements AutoCloseable { | ||||||
| 		this.copyRect(this, xFrom, yFrom, xFrom + xToDelta, yFrom + yToDelta, width, height, mirrorX, mirrorY); | 		this.copyRect(this, xFrom, yFrom, xFrom + xToDelta, yFrom + yToDelta, width, height, mirrorX, mirrorY); | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	public void copyRect(NativeImage source, int xFrom, int yFrom, int xTo, int yTo, int width, int height, boolean mirrorX, boolean mirrorY) { | 	public void copyRect(NativeImage target, 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 i = 0; i < height; i++) { | ||||||
| 			for (int j = 0; j < width; j++) { | 			for (int j = 0; j < width; j++) { | ||||||
| 				int k = mirrorX ? width - 1 - j : j; | 				int k = mirrorX ? width - 1 - j : j; | ||||||
| 				int l = mirrorY ? height - 1 - i : i; | 				int l = mirrorY ? height - 1 - i : i; | ||||||
| 				int m = this.getPixelABGR(xFrom + j, yFrom + i); | 				int m = this.getPixelABGR(xFrom + j, yFrom + i); | ||||||
| 				source.setPixelABGR(xTo + k, yTo + l, m); | 				target.setPixelABGR(xTo + k, yTo + l, m); | ||||||
| 			} | 			} | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
|  | @ -3,6 +3,7 @@ package com.mojang.blaze3d.vertex; | ||||||
| import com.google.common.collect.ImmutableList; | import com.google.common.collect.ImmutableList; | ||||||
| import com.google.common.collect.ImmutableMap; | import com.google.common.collect.ImmutableMap; | ||||||
| import com.mojang.blaze3d.DontObfuscate; | import com.mojang.blaze3d.DontObfuscate; | ||||||
|  | import com.mojang.blaze3d.GraphicsWorkarounds; | ||||||
| import com.mojang.blaze3d.buffers.GpuBuffer; | import com.mojang.blaze3d.buffers.GpuBuffer; | ||||||
| import com.mojang.blaze3d.systems.CommandEncoder; | import com.mojang.blaze3d.systems.CommandEncoder; | ||||||
| import com.mojang.blaze3d.systems.GpuDevice; | import com.mojang.blaze3d.systems.GpuDevice; | ||||||
|  | @ -16,13 +17,14 @@ import java.util.function.Supplier; | ||||||
| import net.fabricmc.api.EnvType; | import net.fabricmc.api.EnvType; | ||||||
| import net.fabricmc.api.Environment; | import net.fabricmc.api.Environment; | ||||||
| import net.minecraft.Util; | import net.minecraft.Util; | ||||||
|  | import net.minecraft.Util.OS; | ||||||
| import org.jetbrains.annotations.Nullable; | import org.jetbrains.annotations.Nullable; | ||||||
| 
 | 
 | ||||||
| @Environment(EnvType.CLIENT) | @Environment(EnvType.CLIENT) | ||||||
| @DontObfuscate | @DontObfuscate | ||||||
| public class VertexFormat { | public class VertexFormat { | ||||||
| 	public static final int UNKNOWN_ELEMENT = -1; | 	public static final int UNKNOWN_ELEMENT = -1; | ||||||
| 	private static final boolean USE_STAGING_BUFFER_WORKAROUND = Util.getPlatform() == Util.OS.WINDOWS && Util.isAarch64(); | 	private static final boolean USE_STAGING_BUFFER_WORKAROUND = Util.getPlatform() == OS.WINDOWS && Util.isAarch64(); | ||||||
| 	@Nullable | 	@Nullable | ||||||
| 	private static GpuBuffer UPLOAD_STAGING_BUFFER; | 	private static GpuBuffer UPLOAD_STAGING_BUFFER; | ||||||
| 	private final List<VertexFormatElement> elements; | 	private final List<VertexFormatElement> elements; | ||||||
|  | @ -125,8 +127,8 @@ public class VertexFormat { | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	private GpuBuffer uploadToBufferWithWorkaround(@Nullable GpuBuffer gpuBuffer, ByteBuffer byteBuffer, int i, Supplier<String> supplier) { | 	private GpuBuffer uploadToBufferWithWorkaround(@Nullable GpuBuffer gpuBuffer, ByteBuffer byteBuffer, int i, Supplier<String> supplier) { | ||||||
| 		if (USE_STAGING_BUFFER_WORKAROUND) { |  | ||||||
| 		GpuDevice gpuDevice = RenderSystem.getDevice(); | 		GpuDevice gpuDevice = RenderSystem.getDevice(); | ||||||
|  | 		if (USE_STAGING_BUFFER_WORKAROUND) { | ||||||
| 			if (gpuBuffer == null) { | 			if (gpuBuffer == null) { | ||||||
| 				gpuBuffer = gpuDevice.createBuffer(supplier, i, byteBuffer); | 				gpuBuffer = gpuDevice.createBuffer(supplier, i, byteBuffer); | ||||||
| 			} else { | 			} else { | ||||||
|  | @ -141,6 +143,12 @@ public class VertexFormat { | ||||||
| 			} | 			} | ||||||
| 
 | 
 | ||||||
| 			return gpuBuffer; | 			return gpuBuffer; | ||||||
|  | 		} else if (GraphicsWorkarounds.get(gpuDevice).alwaysCreateFreshImmediateBuffer()) { | ||||||
|  | 			if (gpuBuffer != null) { | ||||||
|  | 				gpuBuffer.close(); | ||||||
|  | 			} | ||||||
|  | 
 | ||||||
|  | 			return gpuDevice.createBuffer(supplier, i, byteBuffer); | ||||||
| 		} else { | 		} else { | ||||||
| 			return uploadToBuffer(gpuBuffer, byteBuffer, i, supplier); | 			return uploadToBuffer(gpuBuffer, byteBuffer, i, supplier); | ||||||
| 		} | 		} | ||||||
|  |  | ||||||
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city/entrance/entrance_connector.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city/entrance/entrance_connector.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city/entrance/entrance_path_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city/entrance/entrance_path_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city/entrance/entrance_path_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city/entrance/entrance_path_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city/entrance/entrance_path_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city/entrance/entrance_path_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city/entrance/entrance_path_4.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city/entrance/entrance_path_4.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city/entrance/entrance_path_5.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city/entrance/entrance_path_5.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city_center/city_center_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city_center/city_center_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city_center/city_center_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city_center/city_center_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city_center/city_center_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city_center/city_center_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city_center/walls/bottom_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city_center/walls/bottom_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city_center/walls/bottom_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city_center/walls/bottom_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city_center/walls/bottom_left_corner.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city_center/walls/bottom_left_corner.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city_center/walls/bottom_right_corner.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city_center/walls/bottom_right_corner.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city_center/walls/bottom_right_corner_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city_center/walls/bottom_right_corner_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city_center/walls/bottom_right_corner_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city_center/walls/bottom_right_corner_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city_center/walls/left.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city_center/walls/left.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city_center/walls/right.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city_center/walls/right.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city_center/walls/top.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city_center/walls/top.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city_center/walls/top_left_corner.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city_center/walls/top_left_corner.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city_center/walls/top_right_corner.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/city_center/walls/top_right_corner.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/barracks.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/barracks.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/camp_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/camp_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/camp_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/camp_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/camp_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/camp_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/chamber_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/chamber_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/chamber_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/chamber_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/chamber_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/chamber_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/ice_box_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/ice_box_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/large_pillar_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/large_pillar_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/large_ruin_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/large_ruin_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/medium_pillar_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/medium_pillar_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/medium_ruin_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/medium_ruin_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/medium_ruin_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/medium_ruin_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/sauna_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/sauna_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/small_ruin_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/small_ruin_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/small_ruin_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/small_ruin_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/small_statue.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/small_statue.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/tall_ruin_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/tall_ruin_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/tall_ruin_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/tall_ruin_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/tall_ruin_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/tall_ruin_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/tall_ruin_4.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/structures/tall_ruin_4.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/intact_corner_wall_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/intact_corner_wall_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_bridge.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_bridge.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_passage_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_passage_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_stairs_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_stairs_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_stairs_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_stairs_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_stairs_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_stairs_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_stairs_4.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/intact_horizontal_wall_stairs_4.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/intact_intersection_wall_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/intact_intersection_wall_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/intact_lshape_wall_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/intact_lshape_wall_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/ruined_corner_wall_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/ruined_corner_wall_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/ruined_corner_wall_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/ruined_corner_wall_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/ruined_horizontal_wall_stairs_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/ruined_horizontal_wall_stairs_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/ruined_horizontal_wall_stairs_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/ruined_horizontal_wall_stairs_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/ruined_horizontal_wall_stairs_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/ruined_horizontal_wall_stairs_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/ruined_horizontal_wall_stairs_4.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ancient_city/walls/ruined_horizontal_wall_stairs_4.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/blocks/air.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/blocks/air.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/blocks/gold.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/blocks/gold.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/bridge/bridge_pieces/bridge.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/bridge/bridge_pieces/bridge.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/bridge/connectors/back_bridge_bottom.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/bridge/connectors/back_bridge_bottom.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/bridge/connectors/back_bridge_top.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/bridge/connectors/back_bridge_top.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/bridge/legs/leg_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/bridge/legs/leg_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/bridge/legs/leg_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/bridge/legs/leg_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/bridge/rampart_plates/plate_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/bridge/rampart_plates/plate_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/bridge/ramparts/rampart_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/bridge/ramparts/rampart_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/bridge/ramparts/rampart_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/bridge/ramparts/rampart_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/bridge/starting_pieces/entrance.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/bridge/starting_pieces/entrance.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/bridge/starting_pieces/entrance_base.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/bridge/starting_pieces/entrance_base.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/bridge/starting_pieces/entrance_face.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/bridge/starting_pieces/entrance_face.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/bridge/walls/wall_base_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/bridge/walls/wall_base_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/bridge/walls/wall_base_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/bridge/walls/wall_base_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/air_base.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/air_base.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/connectors/end_post_connector.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/connectors/end_post_connector.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/large_stables/inner_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/large_stables/inner_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/large_stables/inner_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/large_stables/inner_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/large_stables/inner_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/large_stables/inner_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/large_stables/inner_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/large_stables/inner_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/large_stables/inner_4.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/large_stables/inner_4.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/large_stables/outer_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/large_stables/outer_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/large_stables/outer_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/large_stables/outer_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/large_stables/outer_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/large_stables/outer_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/large_stables/outer_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/large_stables/outer_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/large_stables/outer_4.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/large_stables/outer_4.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/posts/end_post.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/posts/end_post.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/posts/stair_post.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/posts/stair_post.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/rampart_plates/rampart_plate_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/rampart_plates/rampart_plate_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/ramparts/ramparts_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/ramparts/ramparts_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/ramparts/ramparts_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/ramparts/ramparts_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/ramparts/ramparts_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/ramparts/ramparts_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/small_stables/inner_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/small_stables/inner_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/small_stables/inner_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/small_stables/inner_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/small_stables/inner_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/small_stables/inner_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/small_stables/inner_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/small_stables/inner_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/small_stables/outer_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/small_stables/outer_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/small_stables/outer_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/small_stables/outer_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/small_stables/outer_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/small_stables/outer_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/small_stables/outer_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/small_stables/outer_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_1_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_1_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_1_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_1_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_1_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_1_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_1_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_1_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_1_4.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_1_4.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_2_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_2_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_2_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_2_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_2_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_2_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_2_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_2_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_2_4.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_2_4.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_3_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_3_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_3_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_3_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_3_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_3_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_3_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_3_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_3_4.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/stairs/stairs_3_4.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/starting_pieces/stairs_0_mirrored.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/starting_pieces/stairs_0_mirrored.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/starting_pieces/stairs_1_mirrored.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/starting_pieces/stairs_1_mirrored.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/starting_pieces/stairs_2_mirrored.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/starting_pieces/stairs_2_mirrored.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/starting_pieces/stairs_3_mirrored.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/starting_pieces/stairs_3_mirrored.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/starting_pieces/stairs_4_mirrored.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/starting_pieces/stairs_4_mirrored.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/starting_pieces/starting_stairs_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/starting_pieces/starting_stairs_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/starting_pieces/starting_stairs_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/starting_pieces/starting_stairs_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/starting_pieces/starting_stairs_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/starting_pieces/starting_stairs_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/starting_pieces/starting_stairs_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/starting_pieces/starting_stairs_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/starting_pieces/starting_stairs_4.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/starting_pieces/starting_stairs_4.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/walls/side_wall_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/walls/side_wall_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/walls/side_wall_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/walls/side_wall_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/walls/wall_base.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/hoglin_stable/walls/wall_base.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/mobs/crossbow_piglin.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/mobs/crossbow_piglin.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/mobs/empty.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/mobs/empty.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/mobs/hoglin.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/mobs/hoglin.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/mobs/melee_piglin.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/mobs/melee_piglin.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/mobs/melee_piglin_always.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/mobs/melee_piglin_always.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/mobs/sword_piglin.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/mobs/sword_piglin.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/bases/centers/center_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/bases/centers/center_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/bases/centers/center_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/bases/centers/center_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/bases/centers/center_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/bases/centers/center_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/bases/centers/center_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/bases/centers/center_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/bases/lava_basin.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/bases/lava_basin.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/big_air_full.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/big_air_full.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/brains/center_brain.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/brains/center_brain.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/connectors/center_to_wall_middle.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/connectors/center_to_wall_middle.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/connectors/center_to_wall_top.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/connectors/center_to_wall_top.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/connectors/center_to_wall_top_entrance.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/connectors/center_to_wall_top_entrance.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/corners/bottom/corner_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/corners/bottom/corner_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/corners/bottom/corner_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/corners/bottom/corner_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/corners/edges/bottom.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/corners/edges/bottom.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/corners/edges/middle.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/corners/edges/middle.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/corners/edges/top.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/corners/edges/top.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/corners/middle/corner_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/corners/middle/corner_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/corners/middle/corner_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/corners/middle/corner_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/corners/top/corner_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/corners/top/corner_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/corners/top/corner_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/corners/top/corner_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/entrances/entrance_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/entrances/entrance_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/extensions/empty.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/extensions/empty.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/extensions/fire_room.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/extensions/fire_room.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/extensions/house_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/extensions/house_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/extensions/house_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/extensions/house_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/extensions/large_bridge_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/extensions/large_bridge_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/extensions/large_bridge_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/extensions/large_bridge_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/extensions/large_bridge_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/extensions/large_bridge_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/extensions/large_bridge_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/extensions/large_bridge_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/extensions/roofed_bridge.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/extensions/roofed_bridge.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/extensions/small_bridge_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/extensions/small_bridge_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/extensions/small_bridge_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/extensions/small_bridge_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/extensions/small_bridge_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/extensions/small_bridge_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/extensions/small_bridge_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/extensions/small_bridge_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/ramparts/bottom_wall_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/ramparts/bottom_wall_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/ramparts/lava_basin_main.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/ramparts/lava_basin_main.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/ramparts/lava_basin_side.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/ramparts/lava_basin_side.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/ramparts/mid_wall_main.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/ramparts/mid_wall_main.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/ramparts/mid_wall_side.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/ramparts/mid_wall_side.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/ramparts/top_wall.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/ramparts/top_wall.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/roofs/center_roof.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/roofs/center_roof.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/roofs/corner_roof.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/roofs/corner_roof.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/roofs/wall_roof.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/roofs/wall_roof.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/stairs/lower_stairs.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/stairs/lower_stairs.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/bottom/wall_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/bottom/wall_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/bottom/wall_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/bottom/wall_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/bottom/wall_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/bottom/wall_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/bottom/wall_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/bottom/wall_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/entrance_wall.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/entrance_wall.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/lava_wall.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/lava_wall.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/mid/wall_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/mid/wall_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/mid/wall_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/mid/wall_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/mid/wall_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/mid/wall_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/outer/bottom_corner.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/outer/bottom_corner.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/outer/medium_outer_wall.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/outer/medium_outer_wall.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/outer/mid_corner.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/outer/mid_corner.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/outer/outer_wall.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/outer/outer_wall.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/outer/tall_outer_wall.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/outer/tall_outer_wall.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/outer/top_corner.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/outer/top_corner.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/top/main_entrance.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/top/main_entrance.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/top/wall_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/top/wall_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/top/wall_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/treasure/walls/top/wall_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/air_base.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/air_base.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/center_pieces/center_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/center_pieces/center_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/center_pieces/center_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/center_pieces/center_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/center_pieces/center_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/center_pieces/center_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/edges/edge_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/edges/edge_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/fillers/stage_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/fillers/stage_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/pathways/pathway_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/pathways/pathway_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/pathways/pathway_wall_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/pathways/pathway_wall_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/rampart_plates/plate_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/rampart_plates/plate_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/ramparts/ramparts_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/ramparts/ramparts_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/ramparts/ramparts_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/ramparts/ramparts_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/ramparts/ramparts_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/ramparts/ramparts_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/stages/rot/stage_1_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/stages/rot/stage_1_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/stages/stage_0_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/stages/stage_0_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/stages/stage_0_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/stages/stage_0_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/stages/stage_0_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/stages/stage_0_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/stages/stage_0_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/stages/stage_0_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/stages/stage_1_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/stages/stage_1_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/stages/stage_1_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/stages/stage_1_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/stages/stage_1_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/stages/stage_1_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/stages/stage_1_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/stages/stage_1_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/stages/stage_2_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/stages/stage_2_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/stages/stage_2_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/stages/stage_2_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/stages/stage_3_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/stages/stage_3_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/stages/stage_3_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/stages/stage_3_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/stages/stage_3_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/stages/stage_3_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/stages/stage_3_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/stages/stage_3_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/wall_units/edge_0_large.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/wall_units/edge_0_large.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/wall_units/unit_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/wall_units/unit_0.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/walls/connected_wall.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/walls/connected_wall.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/walls/wall_base.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/bastion/units/walls/wall_base.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/empty.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/empty.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/base_floor.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/base_floor.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/base_roof.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/base_roof.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/bridge_end.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/bridge_end.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/bridge_gentle_stairs.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/bridge_gentle_stairs.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/bridge_piece.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/bridge_piece.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/bridge_steep_stairs.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/bridge_steep_stairs.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/fat_tower_base.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/fat_tower_base.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/fat_tower_middle.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/fat_tower_middle.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/fat_tower_top.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/fat_tower_top.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/second_floor_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/second_floor_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/second_floor_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/second_floor_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/second_roof.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/second_roof.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/ship.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/ship.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/third_floor_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/third_floor_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/third_floor_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/third_floor_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/third_roof.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/third_roof.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/tower_base.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/tower_base.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/tower_floor.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/tower_floor.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/tower_piece.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/tower_piece.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/tower_top.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/end_city/tower_top.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/fossil/skull_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/fossil/skull_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/fossil/skull_1_coal.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/fossil/skull_1_coal.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/fossil/skull_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/fossil/skull_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/fossil/skull_2_coal.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/fossil/skull_2_coal.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/fossil/skull_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/fossil/skull_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/fossil/skull_3_coal.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/fossil/skull_3_coal.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/fossil/skull_4.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/fossil/skull_4.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/fossil/skull_4_coal.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/fossil/skull_4_coal.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/fossil/spine_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/fossil/spine_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/fossil/spine_1_coal.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/fossil/spine_1_coal.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/fossil/spine_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/fossil/spine_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/fossil/spine_2_coal.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/fossil/spine_2_coal.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/fossil/spine_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/fossil/spine_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/fossil/spine_3_coal.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/fossil/spine_3_coal.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/fossil/spine_4.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/fossil/spine_4.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/fossil/spine_4_coal.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/fossil/spine_4_coal.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/igloo/bottom.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/igloo/bottom.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/igloo/middle.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/igloo/middle.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/igloo/top.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/igloo/top.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/nether_fossils/fossil_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/nether_fossils/fossil_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/nether_fossils/fossil_10.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/nether_fossils/fossil_10.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/nether_fossils/fossil_11.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/nether_fossils/fossil_11.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/nether_fossils/fossil_12.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/nether_fossils/fossil_12.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/nether_fossils/fossil_13.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/nether_fossils/fossil_13.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/nether_fossils/fossil_14.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/nether_fossils/fossil_14.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/nether_fossils/fossil_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/nether_fossils/fossil_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/nether_fossils/fossil_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/nether_fossils/fossil_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/nether_fossils/fossil_4.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/nether_fossils/fossil_4.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/nether_fossils/fossil_5.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/nether_fossils/fossil_5.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/nether_fossils/fossil_6.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/nether_fossils/fossil_6.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/nether_fossils/fossil_7.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/nether_fossils/fossil_7.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/nether_fossils/fossil_8.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/nether_fossils/fossil_8.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/nether_fossils/fossil_9.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/nether_fossils/fossil_9.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/pillager_outpost/base_plate.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/pillager_outpost/base_plate.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/pillager_outpost/feature_cage1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/pillager_outpost/feature_cage1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/pillager_outpost/feature_cage2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/pillager_outpost/feature_cage2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/pillager_outpost/feature_cage_with_allays.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/pillager_outpost/feature_cage_with_allays.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/pillager_outpost/feature_logs.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/pillager_outpost/feature_logs.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/pillager_outpost/feature_plate.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/pillager_outpost/feature_plate.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/pillager_outpost/feature_targets.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/pillager_outpost/feature_targets.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/pillager_outpost/feature_tent1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/pillager_outpost/feature_tent1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/pillager_outpost/feature_tent2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/pillager_outpost/feature_tent2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/pillager_outpost/watchtower.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/pillager_outpost/watchtower.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/pillager_outpost/watchtower_overgrown.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/pillager_outpost/watchtower_overgrown.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ruined_portal/giant_portal_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ruined_portal/giant_portal_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ruined_portal/giant_portal_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ruined_portal/giant_portal_2.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ruined_portal/giant_portal_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ruined_portal/giant_portal_3.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ruined_portal/portal_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ruined_portal/portal_1.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								data/minecraft/structure/ruined_portal/portal_10.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								data/minecraft/structure/ruined_portal/portal_10.nbt
									 (Stored with Git LFS)
										
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							Some files were not shown because too many files have changed in this diff Show more
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue