From 0bd00eb842fe3f5f3ebe5c55bc06eef339f014f4 Mon Sep 17 00:00:00 2001 From: olim Date: Thu, 11 Apr 2024 10:59:00 +0100 Subject: fix formatting hopefully make sure that the code in the pull request is formatted properly --- src/main/java/de/hysky/skyblocker/config/SkyblockerConfig.java | 4 ++-- .../java/de/hysky/skyblocker/config/categories/GeneralCategory.java | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'src/main/java/de/hysky/skyblocker/config') diff --git a/src/main/java/de/hysky/skyblocker/config/SkyblockerConfig.java b/src/main/java/de/hysky/skyblocker/config/SkyblockerConfig.java index 9ee1dabe..dc3fea10 100644 --- a/src/main/java/de/hysky/skyblocker/config/SkyblockerConfig.java +++ b/src/main/java/de/hysky/skyblocker/config/SkyblockerConfig.java @@ -355,7 +355,7 @@ public class SkyblockerConfig { public boolean enableFishingHelper = true; @SerialEntry - public boolean enableFishingTimer = true; + public boolean enableFishingTimer = false; @SerialEntry public boolean changeTimerColor = true; @@ -364,7 +364,7 @@ public class SkyblockerConfig { public float fishingTimerScale = 1f; @SerialEntry - public boolean hideOtherPlayers = true; + public boolean hideOtherPlayersRods = false; } public static class FairySouls { diff --git a/src/main/java/de/hysky/skyblocker/config/categories/GeneralCategory.java b/src/main/java/de/hysky/skyblocker/config/categories/GeneralCategory.java index 830c67fd..2a171a14 100644 --- a/src/main/java/de/hysky/skyblocker/config/categories/GeneralCategory.java +++ b/src/main/java/de/hysky/skyblocker/config/categories/GeneralCategory.java @@ -253,9 +253,9 @@ public class GeneralCategory { .option(Option.createBuilder() .name(Text.translatable("text.autoconfig.skyblocker.option.general.fishing.hideOtherPlayers")) .description(OptionDescription.of(Text.translatable("text.autoconfig.skyblocker.option.general.fishing.hideOtherPlayers.@Tooltip"))) - .binding(defaults.general.fishing.hideOtherPlayers, - () -> config.general.fishing.hideOtherPlayers, - newValue -> config.general.fishing.hideOtherPlayers = newValue) + .binding(defaults.general.fishing.hideOtherPlayersRods, + () -> config.general.fishing.hideOtherPlayersRods, + newValue -> config.general.fishing.hideOtherPlayersRods = newValue) .controller(ConfigUtils::createBooleanController) .build()) .build()) -- cgit