diff options
author | hannibal2 <24389977+hannibal002@users.noreply.github.com> | 2024-08-19 11:17:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-19 11:17:06 +0200 |
commit | 1d62dca118c49157c0ffcf1cb3753ce72877b8f2 (patch) | |
tree | 6b872eb5ccd32c0560663b792c5ba283da8f9b2e /src/main | |
parent | 860aec3a996090ff8a294cd19cbfe129dd8e5c34 (diff) | |
download | skyhanni-1d62dca118c49157c0ffcf1cb3753ce72877b8f2.tar.gz skyhanni-1d62dca118c49157c0ffcf1cb3753ce72877b8f2.tar.bz2 skyhanni-1d62dca118c49157c0ffcf1cb3753ce72877b8f2.zip |
Fix: Typos (#2379)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main')
2 files changed, 6 insertions, 4 deletions
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; } |