diff options
author | hannibal2 <24389977+hannibal002@users.noreply.github.com> | 2024-09-12 02:33:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-12 02:33:44 +0200 |
commit | e350ade0d86955ce1a865f4286cd208d54693777 (patch) | |
tree | 9fcfaaf1a15a55b85a55df58d83b1c0c9e66b885 /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | b2d1c22d4baebc6eaf9eef823b11fa9d1801ced1 (diff) | |
download | skyhanni-e350ade0d86955ce1a865f4286cd208d54693777.tar.gz skyhanni-e350ade0d86955ce1a865f4286cd208d54693777.tar.bz2 skyhanni-e350ade0d86955ce1a865f4286cd208d54693777.zip |
Improvement: Stars in Estimated Item Value (#2492)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/misc/EstimatedItemValueConfig.java | 9 |
1 files changed, 9 insertions, 0 deletions
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 096370308..3f5874ac0 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 @@ -40,6 +40,15 @@ public class EstimatedItemValueConfig { public Property<Integer> enchantmentsCap = Property.of(7); @Expose + @ConfigOption(name = "Star Material Cap", desc = "Only show the top # most expensive parts of star prices.") + @ConfigEditorSlider( + minValue = 1, + maxValue = 15, + minStep = 1 + ) + public Property<Integer> starMaterialCap = Property.of(3); + + @Expose @ConfigOption(name = "Show Exact Price", desc = "Show the exact total price instead of the compact number.") @ConfigEditorBoolean public Property<Boolean> exactPrice = Property.of(false); |