Skip to content

Commit e537953

Browse files
committed
build(version): 1.1.3->1.1.4
1 parent 5523019 commit e537953

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

docs/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Cumulus - NeoForge - 1.21.1-1.1.4
2+
3+
- Fix early config crash.
4+
15
# Cumulus - NeoForge - 1.21.1-1.1.3
26

37
- Fix missing registry crash.

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ neogradle.subsystems.parchment.mappingsVersion=2024.07.28
1111
mod_id=cumulus_menus
1212
mod_group=com.aetherteam.cumulus
1313
mod_name=Cumulus
14-
mod_version=1.1.3
14+
mod_version=1.1.4
1515
mod_license=LGPL-3.0
1616
mod_url=https://modrinth.com/mod/cumulus
1717
mod_update=https://github.com/The-Aether-Team/Cumulus/raw/1.21.1-develop/update.json

src/main/java/com/aetherteam/cumulus/client/event/hooks/MenuHooks.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public static void trackFallbacks(Screen screen) {
6363
*/
6464
@Nullable
6565
public static Screen setupCustomMenu(Screen screen, MenuHelper menuHelper) {
66-
if (CumulusConfig.CLIENT.enable_menu_api.get() && screen instanceof TitleScreen) {
66+
if (screen instanceof TitleScreen && CumulusConfig.CLIENT.enable_menu_api.get()) {
6767
return menuHelper.applyMenu(menuHelper.getActiveMenu());
6868
}
6969
return null;

update.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
"1.20.1-recommended": "1.20.1-1.0.0-neoforge",
77
"1.20.2-recommended": "1.20.2-1.0.1-neoforge",
88
"1.20.4-recommended": "1.20.4-1.0.1-neoforge",
9-
"1.21.1-recommended": "1.1.3"
9+
"1.21.1-recommended": "1.1.4"
1010
}
1111
}

0 commit comments

Comments
 (0)