diff options
-rw-r--r-- | CHANGELOG.md | 7 | ||||
-rw-r--r-- | FEATURES.md | 3 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java | 2 |
3 files changed, 11 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 15dce9578..249398d90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ + Show the remaining rift time, max time, percentage, and extra time changes. + **Rift Highlight Guide** + Highlight things to do in the Rift Guide. ++ Added **Shy Warning** (Contributed by CalMWolfs) + + Shows a warning when a shy is going to steal your time. + + Useful if you play without volume. + +### Changes ++ Option to show the yaw and pitch display outside garden or while not holding a farming tool (Contributed by CalMWolfs) ++ Added wizard warp as diana waypoint ## Version 0.18 (2023-06-19) diff --git a/FEATURES.md b/FEATURES.md index c21599543..0d3044ac5 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -275,6 +275,9 @@ + Show the remaining rift time, max time, percentage, and extra time changes. + **Highlight Guide** + Highlight things to do in the Rift Guide. ++ Added **Shy Warning** (Contributed by CalMWolfs) + + Shows a warning when a shy is going to steal your time. + + Useful if you play without volume. ## Commands + **/wiki <search term>** - using hypixel-skyblock.fandom.com instead of Hypixel wiki. diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java index 9434305bd..bd1f73800 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java @@ -43,7 +43,7 @@ public class RiftConfig { @Expose @ConfigOption(name = "Shy Warning", desc = "Shows a warning when a shy is going to steal your time. " + - "Useful if you play without volume") + "Useful if you play without volume.") @ConfigEditorBoolean public boolean shyWarning = true; } |