diff options
| author | Lorenz <ESs95s3P5z8Pheb> | 2022-07-23 08:40:56 +0200 |
|---|---|---|
| committer | Lorenz <ESs95s3P5z8Pheb> | 2022-07-23 08:40:56 +0200 |
| commit | 62efc12ae194f8aee0bac3991ed584f9e426e549 (patch) | |
| tree | b98d93ebde0274f14f083c9070144ce818b954f6 /src/main/java/at/hannibal2/skyhanni/config/features | |
| parent | f365abe2ce8470566e19e2133dffc1cfc23ba422 (diff) | |
| download | skyhanni-62efc12ae194f8aee0bac3991ed584f9e426e549.tar.gz skyhanni-62efc12ae194f8aee0bac3991ed584f9e426e549.tar.bz2 skyhanni-62efc12ae194f8aee0bac3991ed584f9e426e549.zip | |
adding anvil combine helper feature
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java (renamed from src/main/java/at/hannibal2/skyhanni/config/features/Items.java) | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Items.java b/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java index 2c172aa9f..eddb9fe15 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Items.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java @@ -6,7 +6,7 @@ import at.hannibal2.skyhanni.config.gui.core.config.annotations.ConfigEditorBool import at.hannibal2.skyhanni.config.gui.core.config.annotations.ConfigOption; import com.google.gson.annotations.Expose; -public class Items { +public class Inventory { @Expose @ConfigOption(name = "Not Clickable Items", desc = "Hide items that are not clickable in " + "the current inventory: ah, bz, accessory bag, etc") @@ -63,4 +63,9 @@ public class Items { @ConfigOption(name = "Ability Cooldown", desc = "Show the cooldown of item abilities.") @ConfigEditorBoolean public boolean itemAbilityCooldown = false; + + @Expose + @ConfigOption(name = "Anvil Combine Helper", desc = "Suggests the same item in the inventory when trying to combine two items in the anvil.") + @ConfigEditorBoolean + public boolean anvilCombineHelper = false; } |
