diff options
author | HiZe_ <superhize@hotmail.com> | 2023-06-05 00:27:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-05 00:27:15 +0200 |
commit | fd248c963a4d08be55817cfc7683547f54f399f2 (patch) | |
tree | 5041db9cf3ee2e2b230883a943c95886d33f9beb /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | 6a108796ed40747693277335b4d5de90c3ce7f0b (diff) | |
download | skyhanni-fd248c963a4d08be55817cfc7683547f54f399f2.tar.gz skyhanni-fd248c963a4d08be55817cfc7683547f54f399f2.tar.bz2 skyhanni-fd248c963a4d08be55817cfc7683547f54f399f2.zip |
Updated Sack-In-A-Sack display (#216)
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Misc.java | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java b/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java index 0402c1ae2..d55463419 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java @@ -423,6 +423,24 @@ public class Misc { public boolean vipVisits = true; } + @ConfigOption(name = "Pocket Sack-In-A-Sack", desc = "") + @Accordion + @Expose + public PocketSackInASack pocketSackInASack = new PocketSackInASack(); + + public static class PocketSackInASack { + + @Expose + @ConfigOption(name = "Pocket Sack-In-A-Sack", desc = "Show numbers of Pocket Sack-In-A-Sack applied on a sack.") + @ConfigEditorBoolean + public boolean showApplied = false; + + @Expose + @ConfigOption(name = "Replace In Lore", desc = "Replace how text is displayed in lore.\nShow §eis stitched with 2/3...\n§7Instead of §eis stitched with two...") + @ConfigEditorBoolean + public boolean replaceLore = false; + } + @Expose @ConfigOption(name = "Exp Bottles", desc = "Hides all the experience orbs lying on the ground.") @ConfigEditorBoolean @@ -485,11 +503,6 @@ public class Misc { public boolean serverRestartTitle = true; @Expose - @ConfigOption(name = "Pocket Sack-In-A-Sack", desc = "Show numbers of Pocket Sack-In-A-Sack applied on a sack.") - @ConfigEditorBoolean - public boolean sackInASackApplied = false; - - @Expose @ConfigOption(name = "Config Button", desc = "Add a button to the pause menu to configure SkyHanni.") @ConfigEditorBoolean public boolean configButtonOnPause = true; |