diff options
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/inventory/GetFromSackConfig.java | 11 |
1 files changed, 11 insertions, 0 deletions
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; } |