diff options
author | NetheriteMiner <88792142+NetheriteMiner@users.noreply.github.com> | 2024-02-29 16:24:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-29 22:24:21 +0100 |
commit | bc1a28285226db06109b0d39ec4242db1edb8a6d (patch) | |
tree | d7dbd25593b046cf3faf5a28632f236f2986b9c5 /src/main/java/at/hannibal2/skyhanni/config | |
parent | 53e52f886b3026aa8509d94526337aa8fca10275 (diff) | |
download | skyhanni-bc1a28285226db06109b0d39ec4242db1edb8a6d.tar.gz skyhanni-bc1a28285226db06109b0d39ec4242db1edb8a6d.tar.bz2 skyhanni-bc1a28285226db06109b0d39ec4242db1edb8a6d.zip |
Max Items Bazaar with current Purse. #876
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/inventory/InventoryConfig.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/InventoryConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/InventoryConfig.java index 84ebfd9ca..6c905889f 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/InventoryConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/InventoryConfig.java @@ -2,6 +2,7 @@ package at.hannibal2.skyhanni.config.features.inventory; import at.hannibal2.skyhanni.config.FeatureToggle; import at.hannibal2.skyhanni.config.HasLegacyId; +import at.hannibal2.skyhanni.config.core.config.Position; import at.hannibal2.skyhanni.config.features.inventory.helper.HelperConfig; import com.google.gson.annotations.Expose; import io.github.moulberry.moulconfig.annotations.Accordion; @@ -200,6 +201,15 @@ public class InventoryConfig { public boolean shiftClickForEquipment = false; @Expose + @ConfigOption(name = "Max Items With Purse", desc = "Calculates the maximum amount of items that can be purchased from the Bazaar for the amount of coins in your purse.") + @ConfigEditorBoolean + @FeatureToggle + public boolean maxPurseItems = false; + + @Expose + public Position purseItemsPos = new Position(346, 90, true, false); + + @Expose @ConfigOption(name = "Shift Click NPC sell", desc = "Makes normal clicks to shift clicks in npc inventory for selling.") @ConfigEditorBoolean @FeatureToggle |