diff options
author | Kevinthegreat <92656833+kevinthegreat1@users.noreply.github.com> | 2023-11-17 10:26:51 -0500 |
---|---|---|
committer | Kevinthegreat <92656833+kevinthegreat1@users.noreply.github.com> | 2023-11-17 10:28:45 -0500 |
commit | 8ac3fd07f712ddc45cc8477a5de9bd543a29e166 (patch) | |
tree | 92a65947ce5593428e73209e778b186998fd4f5e | |
parent | 9a86f3c5297c0e597abce80222db8ef9c42fbe8e (diff) | |
download | Skyblocker-8ac3fd07f712ddc45cc8477a5de9bd543a29e166.tar.gz Skyblocker-8ac3fd07f712ddc45cc8477a5de9bd543a29e166.tar.bz2 Skyblocker-8ac3fd07f712ddc45cc8477a5de9bd543a29e166.zip |
Add note
-rw-r--r-- | src/main/java/de/hysky/skyblocker/config/categories/GeneralCategory.java | 2 | ||||
-rw-r--r-- | src/main/resources/assets/skyblocker/lang/en_us.json | 3 |
2 files changed, 3 insertions, 2 deletions
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 0f49be7b..be5f0665 100644 --- a/src/main/java/de/hysky/skyblocker/config/categories/GeneralCategory.java +++ b/src/main/java/de/hysky/skyblocker/config/categories/GeneralCategory.java @@ -275,7 +275,7 @@ public class GeneralCategory { .build()) .option(Option.<Waypoint.Type>createBuilder() .name(Text.translatable("text.autoconfig.skyblocker.option.general.waypoints.waypointType")) - .description(OptionDescription.of(Text.translatable("text.autoconfig.skyblocker.option.general.waypoints.waypointType.@Tooltip"))) + .description(OptionDescription.of(Text.translatable("text.autoconfig.skyblocker.option.general.waypoints.waypointType.@Tooltip"), Text.translatable("text.autoconfig.skyblocker.option.general.waypoints.waypointType.generalNote"))) .binding(defaults.general.waypoints.waypointType, () -> config.general.waypoints.waypointType, newValue -> config.general.waypoints.waypointType = newValue) diff --git a/src/main/resources/assets/skyblocker/lang/en_us.json b/src/main/resources/assets/skyblocker/lang/en_us.json index 1cba3f80..d8cba6f4 100644 --- a/src/main/resources/assets/skyblocker/lang/en_us.json +++ b/src/main/resources/assets/skyblocker/lang/en_us.json @@ -53,7 +53,8 @@ "text.autoconfig.skyblocker.option.general.waypoints": "Waypoints", "text.autoconfig.skyblocker.option.general.waypoints.enableWaypoints": "Enable Waypoints", "text.autoconfig.skyblocker.option.general.waypoints.waypointType": "Waypoint Type", - "text.autoconfig.skyblocker.option.general.waypoints.waypointType.@Tooltip": "Waypoint: Displays a highlight and beam.\n\nOutlined Waypoint: Displays both a waypoint and an outline.\n\nHighlight: Only displays a highlight.\n\nOutlined Highlight: Displays both a highlight and an outline.\n\nOutline: Outlines the secret in a box.", + "text.autoconfig.skyblocker.option.general.waypoints.waypointType.@Tooltip": "Waypoint: Displays a highlight and a beacon beam.\n\nOutlined Waypoint: Displays both a waypoint and an outline.\n\nHighlight: Only displays a highlight.\n\nOutlined Highlight: Displays both a highlight and an outline.\n\nOutline: Only displays an outline.", + "text.autoconfig.skyblocker.option.general.waypoints.waypointType.generalNote": "\n\n\nThis option does not apply to all waypoints. Some waypoints such as secret waypoints have their own waypoint type option.", "text.autoconfig.skyblocker.option.general.quiverWarning": "Quiver Warning", "text.autoconfig.skyblocker.option.general.quiverWarning.enableQuiverWarning": "Enable Quiver Warning", "text.autoconfig.skyblocker.option.general.quiverWarning.enableQuiverWarningInDungeons": "Enable Quiver Warning In Dungeons", |