diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-04-15 20:49:59 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-04-15 20:49:59 +0200 |
commit | 07e037fc8247db31df2e73c2ac2b9f957ed5a6bb (patch) | |
tree | f69791fa380ee2ab72d14de444a85c7d5ffb4842 /src/main/java/at/hannibal2/skyhanni/config | |
parent | f0029421b834ba4724abdcf95af20ff6919ea560 (diff) | |
download | skyhanni-07e037fc8247db31df2e73c2ac2b9f957ed5a6bb.tar.gz skyhanni-07e037fc8247db31df2e73c2ac2b9f957ed5a6bb.tar.bz2 skyhanni-07e037fc8247db31df2e73c2ac2b9f957ed5a6bb.zip |
Option to hide the chat message from hypixel that a new visitor has arrived at your garden (default enabled)
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Garden.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java index 40f55bd83..0341b341a 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java @@ -147,6 +147,12 @@ public class Garden { public boolean visitorColoredName = true; @Expose + @ConfigOption(name = "Hypixel Message", desc = "Hide the chat message from hypixel that a new visitor has arrived at your garden") + @ConfigEditorBoolean + @ConfigAccordionId(id = 1) + public boolean visitorHypixelArrivedMessage = true; + + @Expose @ConfigOption(name = "Numbers", desc = "") @ConfigEditorAccordion(id = 5) public boolean numbers = false; |