From 1d62dca118c49157c0ffcf1cb3753ce72877b8f2 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal002@users.noreply.github.com> Date: Mon, 19 Aug 2024 11:17:06 +0200 Subject: Fix: Typos (#2379) Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com> --- .../config/features/event/waypoints/ChristmasPresentConfig.java | 8 +++++--- .../config/features/event/waypoints/HalloweenBasketConfig.java | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/event/waypoints/ChristmasPresentConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/event/waypoints/ChristmasPresentConfig.java index 1ecb9e089..cb3ac01fb 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/event/waypoints/ChristmasPresentConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/event/waypoints/ChristmasPresentConfig.java @@ -8,18 +8,20 @@ import io.github.notenoughupdates.moulconfig.annotations.ConfigOption; public class ChristmasPresentConfig { @Expose - @ConfigOption(name = "Present Waypoints", desc = "Show all Present waypoints") + @ConfigOption(name = "Present Waypoints", desc = "Show all Present waypoints.") @ConfigEditorBoolean @FeatureToggle public boolean allWaypoints = false; + // TODO confirm if this toggle actually does anything, ar there helper waypoints at all? @Expose - @ConfigOption(name = "Entrance Waypoints", desc = "Show helper waypoints to .") + @ConfigOption(name = "Entrance Waypoints", desc = "Show helper waypoints.") @ConfigEditorBoolean public boolean allEntranceWaypoints = false; + @Expose - @ConfigOption(name = "Only Closest", desc = "Only show the closest waypoint") + @ConfigOption(name = "Only Closest", desc = "Only show the closest waypoint.") @ConfigEditorBoolean public boolean onlyClosest = false; } diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/event/waypoints/HalloweenBasketConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/event/waypoints/HalloweenBasketConfig.java index 153e55c8b..f0b31f649 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/event/waypoints/HalloweenBasketConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/event/waypoints/HalloweenBasketConfig.java @@ -21,7 +21,7 @@ public class HalloweenBasketConfig { public boolean allEntranceWaypoints = false; @Expose - @ConfigOption(name = "Only Closest", desc = "Only show the closest waypoint") + @ConfigOption(name = "Only Closest", desc = "Only show the closest waypoint.") @ConfigEditorBoolean public boolean onlyClosest = true; } -- cgit