From 5b12fb9bd5c6c4ea221024ab28bc1dc3e25d09ab Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Wed, 31 Jan 2024 11:55:22 +0100 Subject: Added options to hide Helmet Skins, Armor Dyes or Runes from Estimated Item Value Calculation. --- .../config/features/misc/EstimatedItemValueConfig.java | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/misc/EstimatedItemValueConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/misc/EstimatedItemValueConfig.java index 2513cd66b..4608f1023 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/misc/EstimatedItemValueConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/misc/EstimatedItemValueConfig.java @@ -47,6 +47,21 @@ public class EstimatedItemValueConfig { @FeatureToggle public boolean armor = true; + @Expose + @ConfigOption(name = "Ignore Helmet Skins", desc = "Ignore helmet Skins from the total value.") + @ConfigEditorBoolean + public boolean ignoreHelmetSkins = false; + + @Expose + @ConfigOption(name = "Ignore Armor Dyes", desc = "Ignore Armor Dyes from the total value.") + @ConfigEditorBoolean + public boolean ignoreArmorDyes = false; + + @Expose + @ConfigOption(name = "Ignore Runes", desc = "Ignore Runes from the total value.") + @ConfigEditorBoolean + public boolean ignoreRunes = false; + @Expose public Position itemPriceDataPos = new Position(140, 90, false, true); } -- cgit