diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-10-26 18:17:10 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-10-26 18:17:10 +0200 |
commit | 51cfe4de8e902e614ea73627fce7d34eabea2e62 (patch) | |
tree | 5f3da71724052c61ad2c08e112a86337971bcfd2 /src/main/java/at/hannibal2/skyhanni/config | |
parent | 4416d272a774be2afd89cf5fbe05595d41349fc7 (diff) | |
download | skyhanni-51cfe4de8e902e614ea73627fce7d34eabea2e62.tar.gz skyhanni-51cfe4de8e902e614ea73627fce7d34eabea2e62.tar.bz2 skyhanni-51cfe4de8e902e614ea73627fce7d34eabea2e62.zip |
Added support for tab completing the items with recipe in Hypixel command /viewrecipe.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/CommandsConfig.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/CommandsConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/CommandsConfig.java index 6f7607f9b..d1475d522 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/CommandsConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/CommandsConfig.java @@ -60,6 +60,12 @@ public class CommandsConfig { @ConfigEditorBoolean @FeatureToggle public boolean partyCommands = true; + + @Expose + @ConfigOption(name = "Viewrecipe Items", desc = "Tab complete items with recipe in the the Hypixel command §e/viewrecipe§7.") + @ConfigEditorBoolean + @FeatureToggle + public boolean viewrecipeItems = true; } @Expose |