diff options
author | hannibal2 <24389977+hannibal002@users.noreply.github.com> | 2023-06-12 12:49:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-12 12:49:20 +0200 |
commit | 56c5f9fc485731f2a33a2b61fa8b7d81193c207c (patch) | |
tree | 501b76594f2afa2057b1e45e402aa4c7f109dd12 /src/main/java/at/hannibal2/skyhanni/config | |
parent | f7b36cc696105948a31a871f493a515c3be658cd (diff) | |
download | skyhanni-56c5f9fc485731f2a33a2b61fa8b7d81193c207c.tar.gz skyhanni-56c5f9fc485731f2a33a2b61fa8b7d81193c207c.tar.bz2 skyhanni-56c5f9fc485731f2a33a2b61fa8b7d81193c207c.zip |
Quick Mod Menu Switch (#232)
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/DevData.java | 16 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Misc.java | 26 |
2 files changed, 42 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/DevData.java b/src/main/java/at/hannibal2/skyhanni/config/features/DevData.java index d94d3a39a..85120f929 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/DevData.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/DevData.java @@ -32,6 +32,22 @@ public class DevData { public boolean commandLogs = false; @Expose + @ConfigOption( + name = "Mod Menu Log", + desc = "Enables debug messages when the currently opened gui changes, with the path to the gui class. " + + "Useful for adding more mods to quick mod menu switch." + ) + @ConfigEditorBoolean + @ConfigAccordionId(id = 0) + public boolean modMenuLog = false; + + @Expose + @ConfigOption(name = "Show internal name", desc = "Show internal names in item lores.") + @ConfigEditorBoolean + @ConfigAccordionId(id = 0) + public boolean showInternalName = false; + + @Expose public Position debugPos = new Position(10, 10, false, true); @Expose 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 97a885cdc..64f14947a 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java @@ -446,6 +446,32 @@ public class Misc { public boolean replaceLore = true; } + @ConfigOption(name = "Quick Mod Menu Switch", desc = "") + @Accordion + @Expose + public QuickModMenuSwitch quickModMenuSwitch = new QuickModMenuSwitch(); + + public static class QuickModMenuSwitch { + + @Expose + @ConfigOption(name = "Enabled", desc = "Adding a mod list, allowing to quickly switch between different mod menus") + @ConfigEditorBoolean + public boolean enabled = false; + + @Expose + @ConfigOption(name = "Inside Escape Menu", desc = "Show the mod list while inside the Escape menu") + @ConfigEditorBoolean + public boolean insideEscapeMenu = true; + + @Expose + @ConfigOption(name = "Inside Inventory", desc = "Show the mod list while inside the player inventory (no chest inventory)") + @ConfigEditorBoolean + public boolean insidePlayerInventory = false; + + @Expose + public Position pos = new Position(-178, 143, false, true); + } + @Expose @ConfigOption(name = "Exp Bottles", desc = "Hides all the experience orbs lying on the ground.") @ConfigEditorBoolean |