Skip to content

Commit

Permalink
Fix misplaced brackets during rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
ApexModder committed Dec 4, 2024
1 parent e4ffe83 commit 589f506
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ public static void gatherData(GatherDataEvent.Client event) {
.add(PackMetadataSection.TYPE, new PackMetadataSection(
Component.literal("NeoForge tests resource pack"),
DetectedVersion.BUILT_IN.getPackVersion(PackType.CLIENT_RESOURCES),
Optional.of(new InclusiveRange<>(0, Integer.MAX_VALUE))));
Optional.of(new InclusiveRange<>(0, Integer.MAX_VALUE)))));
gen.addProvider(true, new Lang(packOutput));
// Let blockstate provider see generated item models by passing its existing file helper
ItemModelProvider itemModels = new ItemModels(packOutput, event.getExistingFileHelper());
Expand Down

0 comments on commit 589f506

Please sign in to comment.