From 9617551b8a25c007a259ef342552ef5fa9f3aafc Mon Sep 17 00:00:00 2001 From: Lorenz Date: Wed, 14 Sep 2022 00:22:55 +0200 Subject: change order --- CHANGELOG.md | 2 +- FEATURES.md | 12 ++++++------ 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 (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 (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 @@ -141,14 +141,14 @@ public class Features extends Config { @Category(name = "Slayer", desc = "Slayer Features.") 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(); -- cgit