Skip to content

Commit

Permalink
Fix config being unable to load
Browse files Browse the repository at this point in the history
  • Loading branch information
Emirlol committed Jan 7, 2025
1 parent eb65d03 commit 3f1fe0b
Showing 1 changed file with 1 addition and 2 deletions.
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 3f1fe0b

Please sign in to comment.