Skip to content

Commit

Permalink
Fix config not loading properly (#1129)
Browse files Browse the repository at this point in the history
* Modmenu 13.0.0

* Fix config being unable to load
  • Loading branch information
Emirlol authored Jan 7, 2025
1 parent 15bce9f commit eb962b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ yacl_version=3.6.2+1.21.4
## HM API (https://github.com/AzureAaron/hm-api)
hm_api_version=1.0.1+1.21.2
## Mod Menu (https://modrinth.com/mod/modmenu/versions)
mod_menu_version = 12.0.0-beta.1
mod_menu_version = 13.0.0
## REI (https://modrinth.com/mod/rei/versions?l=fabric)
rei_version = 17.0.789
## EMI (https://modrinth.com/mod/emi/versions)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import de.hysky.skyblocker.skyblock.tabhud.screenbuilder.ScreenBuilder;
import de.hysky.skyblocker.utils.waypoint.Waypoint;
import dev.isxander.yacl3.config.v2.api.SerialEntry;
import it.unimi.dsi.fastutil.objects.Object2BooleanMap;
import it.unimi.dsi.fastutil.objects.Object2BooleanOpenHashMap;
import net.minecraft.client.resource.language.I18n;
import net.minecraft.util.Formatting;
Expand Down Expand Up @@ -105,7 +104,7 @@ public static class SlotText {
public SlotTextMode slotTextMode = SlotTextMode.ENABLED;

@SerialEntry
public Object2BooleanMap<String> textEnabled = new Object2BooleanOpenHashMap<>();
public Object2BooleanOpenHashMap<String> textEnabled = new Object2BooleanOpenHashMap<>();

@SerialEntry
public boolean slotTextToggled = true;
Expand Down

0 comments on commit eb962b9

Please sign in to comment.