Skip to content

Commit

Permalink
Update NeoForge to 21.0.114-beta and fix breakage in NeoForge config …
Browse files Browse the repository at this point in the history
…extension
  • Loading branch information
shedaniel committed Jul 22, 2024
1 parent b3e6630 commit 7cd3db7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ fabric_api_version=0.100.0+1.21
mod_menu_version=11.0.1

forge_version=51.0.0
neoforge_version=21.0.78-beta
neoforge_version=21.0.114-beta

# Set to empty if not snapshots
neoforge_pr=
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ public Optional<String> getIssueTracker() {

@Override
public void registerConfigurationScreen(ConfigurationScreenProvider configurationScreenProvider) {
container.registerExtensionPoint(IConfigScreenFactory.class, (minecraft, screen) -> configurationScreenProvider.provide(screen));
container.registerExtensionPoint(IConfigScreenFactory.class, (container, screen) -> configurationScreenProvider.provide(screen));
}
}
}
2 changes: 1 addition & 1 deletion neoforge/src/main/resources/META-INF/neoforge.mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ side = "BOTH"
[[dependencies.architectury]]
modId = "neoforge"
type = "required"
versionRange = "[21.0.78-beta,)"
versionRange = "[21.0.110-beta,)"
ordering = "NONE"
side = "BOTH"

Expand Down

0 comments on commit 7cd3db7

Please sign in to comment.