File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed
src/main/java/com/aetherteam/cumulus/client/event/hooks Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ neogradle.subsystems.parchment.mappingsVersion=2024.07.28
1111mod_id =cumulus_menus
1212mod_group =com.aetherteam.cumulus
1313mod_name =Cumulus
14- mod_version =1.1.3
14+ mod_version =1.1.4
1515mod_license =LGPL-3.0
1616mod_url =https://modrinth.com/mod/cumulus
1717mod_update =https://github.com/The-Aether-Team/Cumulus/raw/1.21.1-develop/update.json
Original file line number Diff line number Diff 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 ;
Original file line number Diff line number Diff line change 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}
You can’t perform that action at this time.
0 commit comments