diff options
| author | Madeleaan <70163122+Madeleaan@users.noreply.github.com> | 2024-07-06 15:07:47 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-06 15:07:47 +0200 |
| commit | fbc6a87600fcc06bdbabacf3dc34ce7261ab6c7c (patch) | |
| tree | f0914ad7357cbea329a49f14ef42acc571e91025 /src/main/java/io/github/moulberry/notenoughupdates/options | |
| parent | 8f5c2b8e0f2756356dfcbfbdaafceb13b1be3d35 (diff) | |
| download | notenoughupdates-fbc6a87600fcc06bdbabacf3dc34ce7261ab6c7c.tar.gz notenoughupdates-fbc6a87600fcc06bdbabacf3dc34ce7261ab6c7c.tar.bz2 notenoughupdates-fbc6a87600fcc06bdbabacf3dc34ce7261ab6c7c.zip | |
Add gemstone stats (#1210)
Co-authored-by: nopo <nopotheemail@gmail.com>
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/options')
| -rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/TooltipTweaks.java | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/TooltipTweaks.java b/src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/TooltipTweaks.java index 99d9da91..30cb922d 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/TooltipTweaks.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/TooltipTweaks.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 NotEnoughUpdates contributors + * Copyright (C) 2022-2024 NotEnoughUpdates contributors * * This file is part of NotEnoughUpdates. * @@ -79,7 +79,8 @@ public class TooltipTweaks { "\u00a7eInsta-Buys (Daily)", "\u00a7eInsta-Sells (Daily)", "\u00a7eInsta-Buys (Weekly)", - "\u00a7eInsta-Sells (Weekly)"} + "\u00a7eInsta-Sells (Weekly)" + } ) @ConfigAccordionId(id = 0) public List<Integer> priceInfoBaz = new ArrayList<>(Arrays.asList(0, 1, 2, 3, 4)); @@ -170,6 +171,14 @@ public class TooltipTweaks { @Expose @ConfigOption( + name = "Show gemstone stats", + desc = "Show statistics a gemstone will apply" + ) + @ConfigEditorBoolean + public boolean showGemstoneStats = true; + + @Expose + @ConfigOption( name = "Hide default reforge stats", desc = "Hides the reforge stats only for Legendary items that Hypixel adds to the Reforge stones" ) @@ -210,7 +219,6 @@ public class TooltipTweaks { @ConfigEditorBoolean public boolean scrollableTooltips = false; - @Expose @ConfigOption( name = "Expand Pet Exp Requirement", @@ -330,7 +338,6 @@ public class TooltipTweaks { @ConfigAccordionId(id = 2) public boolean copperCoins = true; - @Expose @ConfigOption( name = "AH items cost threshold", |
