diff options
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | FEATURES.md | 1 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java | 2 |
3 files changed, 3 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index d9369cfd5..04f3780cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ + Show the time since you entered limbo. + Show a chat message for how long you were in limbo once you leave it. + Added Highlight Party Members. - Cad + + Marking partly members with a bright outline to better find them in the world. + Added Shift Click Equipment. - Thunderblade73 + This removes the need to shift-click to swap the equipment items, without the annoying "pick up animation". diff --git a/FEATURES.md b/FEATURES.md index a8388bfa3..4abdf24bb 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -671,6 +671,7 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game. + Show the time since you entered limbo. + Show a chat message for how long you were in limbo once you leave it. + Highlight Party Members. - Cad + + Marking partly members with a bright outline to better find them in the world. ## Cosmetics diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java index 13c559f88..54bba1664 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java @@ -544,7 +544,7 @@ public class MiscConfig { public static class HighlightPartyMembers { @Expose - @ConfigOption(name = "Enabled", desc = "Draws a glowing outline around your party members") + @ConfigOption(name = "Enabled", desc = "Marking partly members with a bright outline to better find them in the world.") @ConfigEditorBoolean @FeatureToggle public boolean enabled = false; |