From 18213bc8752966fcf78156bd309799ab68957134 Mon Sep 17 00:00:00 2001 From: bconlon Date: Wed, 26 Jul 2023 13:14:45 -0700 Subject: [PATCH] refactor: Change default config for menu selection button --- src/main/java/com/aetherteam/cumulus/CumulusConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/aetherteam/cumulus/CumulusConfig.java b/src/main/java/com/aetherteam/cumulus/CumulusConfig.java index bd7df8c..0197b1f 100644 --- a/src/main/java/com/aetherteam/cumulus/CumulusConfig.java +++ b/src/main/java/com/aetherteam/cumulus/CumulusConfig.java @@ -22,7 +22,7 @@ public Client(ForgeConfigSpec.Builder builder) { enable_menu_list_button = builder .comment("Adds a button to the top right of the main menu screen to open a menu selection screen") .translation("config.cumulus_menus.client.menu.enable_menu_list_button") - .define("Enables menu selection button", false); + .define("Enables menu selection button", true); builder.pop(); } }