Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
onebeastchris committed Aug 24, 2023
1 parent ea84f49 commit 21a486b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -227,9 +227,6 @@ default Builder tool(boolean isTool) {
@Override
Builder icon(@NonNull String icon);

@Override
Builder tags(@Nullable Set<String> tags);

@Override
Builder allowOffhand(boolean allowOffhand);

Expand All @@ -242,6 +239,9 @@ default Builder tool(boolean isTool) {
@Override
Builder renderOffsets(@Nullable CustomRenderOffsets renderOffsets);

@Override
Builder tags(@Nullable Set<String> tags);

NonVanillaCustomItemData build();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ private CustomBlockMapping createCustomBlockMapping(CustomBlockData.Builder cust
CustomBlockData customBlockData = customBlockDataBuilder
.permutations(permutations)
.build();
// Build CustomBlockStates for each Java block staFte we wish to override
// Build CustomBlockStates for each Java block state we wish to override
Map<String, CustomBlockStateMapping> states = blockStateBuilders.entrySet().stream()
.collect(Collectors.toMap(Map.Entry::getKey, e -> new CustomBlockStateMapping(e.getValue().builder().apply(customBlockData.blockStateBuilder()), e.getValue().extendedCollisionBox())));

Expand Down

0 comments on commit 21a486b

Please sign in to comment.