From f9f271831ba80631e73d5f5c2e44c297552af9cc Mon Sep 17 00:00:00 2001 From: saga <45262877+saga-00@users.noreply.github.com> Date: Mon, 26 Aug 2024 07:09:49 -0300 Subject: Improvement: Default amount for /gfs (#1927) Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com> --- .../skyhanni/config/features/inventory/GetFromSackConfig.java | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/GetFromSackConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/GetFromSackConfig.java index 03990536f..ee77d6664 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/GetFromSackConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/GetFromSackConfig.java @@ -3,6 +3,7 @@ package at.hannibal2.skyhanni.config.features.inventory; import at.hannibal2.skyhanni.config.FeatureToggle; import com.google.gson.annotations.Expose; import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean; +import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorSlider; import io.github.notenoughupdates.moulconfig.annotations.ConfigOption; public class GetFromSackConfig { @@ -23,4 +24,14 @@ public class GetFromSackConfig { @ConfigEditorBoolean @FeatureToggle public boolean superCraftGFS = true; + + @Expose + @ConfigOption(name = "Default GfS", desc = "If you don't provide an amount, a default one will be used instead. Queued GfS needs to be on in order for this to work.") + @ConfigEditorBoolean + public boolean defaultGFS = false; + + @Expose + @ConfigOption(name = "Default Amount GfS", desc = "The default amount of items used when an amount isn't provided.") + @ConfigEditorSlider(minValue = 1, maxValue = 64, minStep = 1) + public int defaultAmountGFS = 1; } -- cgit