Skip to content

Commit

Permalink
wooden octagonal columns get a new look
Browse files Browse the repository at this point in the history
  • Loading branch information
woodiertexas committed Apr 2, 2024
1 parent ce167c5 commit 3624a5b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public interface TextureConfiguration extends BiFunction<BlockType, String, Stri
static final Function<Identifier, TextureConfiguration> 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();
};
},
Expand All @@ -38,7 +38,7 @@ public interface TextureConfiguration extends BiFunction<BlockType, String, Stri
static final Function<Identifier, TextureConfiguration> 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();
};
},
Expand Down

0 comments on commit 3624a5b

Please sign in to comment.