diff options
author | Lorenz <lo.scherf@gmail.com> | 2022-09-14 00:22:55 +0200 |
---|---|---|
committer | Lorenz <lo.scherf@gmail.com> | 2022-09-14 00:22:55 +0200 |
commit | 9617551b8a25c007a259ef342552ef5fa9f3aafc (patch) | |
tree | 441935de64d4d33130b16686797a963c151e9061 | |
parent | 706c801ec6c5ea50b07cbafac10a9bd30b4149b2 (diff) | |
download | skyhanni-9617551b8a25c007a259ef342552ef5fa9f3aafc.tar.gz skyhanni-9617551b8a25c007a259ef342552ef5fa9f3aafc.tar.bz2 skyhanni-9617551b8a25c007a259ef342552ef5fa9f3aafc.zip |
change order
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | FEATURES.md | 12 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/Features.java | 8 |
3 files changed, 11 insertions, 11 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 61bc0c11b..9f57fa78f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # SkyHanni - Change Log -[## Version 0.8 +## Version 0.8 ### Misc - Added hiding the flame particles when using the Fire Veil Wand ability diff --git a/FEATURES.md b/FEATURES.md index 6f958e7f3..7d5123b59 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -1,10 +1,6 @@ # SkyHanni - List of all Features -> Use '/skyhanni or /sh to open the SkyHanni config in game - -## Commands -- /wiki (using hypixel-skyblock.fandom.com instead of Hypixel wiki) -- /shmarkplayer <player> (marking a player with yellow color) +> Use /skyhanni or /sh to open the SkyHanni config in game ## Chat Filter - Hiding annoying messages in the Hub of Hypixel (MVP player joins, other player loot boxes, prototype message, radiating generosity, Hypixel tournaments) @@ -98,6 +94,10 @@ - Option to show the health of Voidgloom Seraph 4 during the laser phase (useful when trying to phase skip) - Show when Revenant Horror 5 is about to BOOM. +## Commands +- /wiki (using hypixel-skyblock.fandom.com instead of Hypixel wiki) +- /shmarkplayer <player> (marking a player with yellow color) +- ## Misc - Allow to copy, paste, and mark selected text in signs (not visual, but it's working still) - Pet Display (showing the currently selected pet as GUI element, without any fancy XP or level or percentage, but with auto-pet support) @@ -107,4 +107,4 @@ - Highlight the voidling extremist in pink color. - Highlight corrupted mobs in purple color. - Highlight slayer miniboss in blue color. -- Highlight the enderman slayer Yang Glyph (Beacon) in red color (supports beacon in hand and beacon flying) +- Highlight the enderman slayer Yang Glyph (Beacon) in red color (supports beacon in hand and beacon flying)
\ No newline at end of file diff --git a/src/main/java/at/hannibal2/skyhanni/config/Features.java b/src/main/java/at/hannibal2/skyhanni/config/Features.java index 3495e4d96..76f6a754d 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/Features.java +++ b/src/main/java/at/hannibal2/skyhanni/config/Features.java @@ -142,14 +142,14 @@ public class Features extends Config { public Slayer slayer = new Slayer(); @Expose - @Category(name = "Misc", desc = "Settings without a category.") - public Misc misc = new Misc(); - - @Expose @Category(name = "Commands", desc = "Enable or disable mod commands") public CommandsFeatures commands = new CommandsFeatures(); @Expose + @Category(name = "Misc", desc = "Settings without a category.") + public Misc misc = new Misc(); + + @Expose @Category(name = "Dev", desc = "Debug and test stuff.") public DevData dev = new DevData(); |