Skip to content

Commit efb1f3d

Browse files
authored
Use correct block ID for resin_brick_wall (#1839)
1 parent 16c0945 commit efb1f3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chunky/src/java/se/llbit/chunky/block/MinecraftBlockProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1167,7 +1167,7 @@ private static void addBlocks(Texture texture, String... names) {
11671167
addBlock("resin_bricks", Texture.resinBricks);
11681168
addBlock("resin_brick_stairs", (name, tag) -> stairs(tag, Texture.resinBricks));
11691169
addBlock("resin_brick_slab", (name, tag) -> slab(tag, Texture.resinBricks));
1170-
addBlock("resin_brick_walls", (name, tag) -> wall(tag, Texture.resinBricks));
1170+
addBlock("resin_brick_wall", (name, tag) -> wall(tag, Texture.resinBricks));
11711171
addBlock("resin_clump", (name, tag) -> new ResinClump(
11721172
tag.get("Properties").get("north").stringValue("false").equals("true"),
11731173
tag.get("Properties").get("south").stringValue("false").equals("true"),

0 commit comments

Comments
 (0)