diff --git a/src/main/java/io/github/debuggyteam/architecture_extensions/api/TextureConfiguration.java b/src/main/java/io/github/debuggyteam/architecture_extensions/api/TextureConfiguration.java index e0ed834..58f5205 100644 --- a/src/main/java/io/github/debuggyteam/architecture_extensions/api/TextureConfiguration.java +++ b/src/main/java/io/github/debuggyteam/architecture_extensions/api/TextureConfiguration.java @@ -11,7 +11,7 @@ public interface TextureConfiguration extends BiFunction WOOD_WITH_LOG = woodId -> create( blockType -> { return switch (blockType) { - case JOIST -> new Identifier(woodId.getNamespace(), "block/" + "stripped_" + woodId.getPath() + "_log").toString(); + case JOIST, OCTAGONAL_COLUMN -> new Identifier(woodId.getNamespace(), "block/" + "stripped_" + woodId.getPath() + "_log").toString(); default -> new Identifier(woodId.getNamespace(), "block/" + woodId.getPath() + "_planks").toString(); }; }, @@ -38,7 +38,7 @@ public interface TextureConfiguration extends BiFunction WOOD_WITH_STEM = woodId -> create( blockType -> { return switch (blockType) { - case JOIST -> new Identifier(woodId.getNamespace(), "block/" + "stripped_" + woodId.getPath() + "_stem").toString(); + case JOIST, OCTAGONAL_COLUMN -> new Identifier(woodId.getNamespace(), "block/" + "stripped_" + woodId.getPath() + "_stem").toString(); default -> new Identifier(woodId.getNamespace(), "block/" + woodId.getPath() + "_planks").toString(); }; },