aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/event/waypoints/ChristmasPresentConfig.java8
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/event/waypoints/HalloweenBasketConfig.java2
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;
}