Skip to content

Commit

Permalink
build(version): 1.1.3->1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
bconlon1 committed Nov 18, 2024
1 parent 5523019 commit e537953
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Cumulus - NeoForge - 1.21.1-1.1.4

- Fix early config crash.

# Cumulus - NeoForge - 1.21.1-1.1.3

- Fix missing registry crash.
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ neogradle.subsystems.parchment.mappingsVersion=2024.07.28
mod_id=cumulus_menus
mod_group=com.aetherteam.cumulus
mod_name=Cumulus
mod_version=1.1.3
mod_version=1.1.4
mod_license=LGPL-3.0
mod_url=https://modrinth.com/mod/cumulus
mod_update=https://github.com/The-Aether-Team/Cumulus/raw/1.21.1-develop/update.json
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public static void trackFallbacks(Screen screen) {
*/
@Nullable
public static Screen setupCustomMenu(Screen screen, MenuHelper menuHelper) {
if (CumulusConfig.CLIENT.enable_menu_api.get() && screen instanceof TitleScreen) {
if (screen instanceof TitleScreen && CumulusConfig.CLIENT.enable_menu_api.get()) {
return menuHelper.applyMenu(menuHelper.getActiveMenu());
}
return null;
Expand Down
2 changes: 1 addition & 1 deletion update.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"1.20.1-recommended": "1.20.1-1.0.0-neoforge",
"1.20.2-recommended": "1.20.2-1.0.1-neoforge",
"1.20.4-recommended": "1.20.4-1.0.1-neoforge",
"1.21.1-recommended": "1.1.3"
"1.21.1-recommended": "1.1.4"
}
}

0 comments on commit e537953

Please sign in to comment.