diff options
-rw-r--r-- | FEATURES.md | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Minions.java | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/FEATURES.md b/FEATURES.md index 9e3063398..574fdbf8d 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -11,7 +11,7 @@ - Many other messages (Not separated into own categories yet) ## Chat -+ Adding a fancy new chat format for player messages (removing the rank prefix, every player has the same color) ++ Using a clean chat format for player messages (removing the rank prefix, every player writes in the same color) + Dungeon Filter (Removing annoying messages from inside dungeon) + Dungeon Boss Message hider (includes The Watcher as well) diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Minions.java b/src/main/java/at/hannibal2/skyhanni/config/features/Minions.java index 318b16555..ce5f68e4c 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Minions.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Minions.java @@ -61,11 +61,6 @@ public class Minions { @ConfigAccordionId(id = 1) public int emptiedTimeDistance = 10; - @Expose - @ConfigOption(name = "Hide Mob Nametag", desc = "Hiding the nametag of mobs close to minions") - @ConfigEditorBoolean - public boolean hideMobsNametagNearby = false; - @ConfigOption(name = "Hopper Profit", desc = "") @ConfigEditorAccordion(id = 2) public boolean hopperProfit = false; @@ -81,4 +76,9 @@ public class Minions { @ConfigEditorButton(runnableId = "hopperProfitDisplay", buttonText = "Edit") @ConfigAccordionId(id = 2) public Position hopperProfitPos = new Position(10, 10, false, true); + + @Expose + @ConfigOption(name = "Hide Mob Nametag", desc = "Hiding the nametag of mobs close to minions") + @ConfigEditorBoolean + public boolean hideMobsNametagNearby = false; } |