diff options
| author | jani270 <69345714+jani270@users.noreply.github.com> | 2022-06-04 19:35:57 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-04 19:35:57 +0200 |
| commit | 1dcfd9774f30fe3d7357a48ca94cfa0fcf277e1b (patch) | |
| tree | 4e390f9666c8abbc40fbf742989727cb9137a97c /src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/AHTweaks.java | |
| parent | 73dbbed409a86328144f2c75f460426e7baa6ae1 (diff) | |
| download | notenoughupdates-1dcfd9774f30fe3d7357a48ca94cfa0fcf277e1b.tar.gz notenoughupdates-1dcfd9774f30fe3d7357a48ca94cfa0fcf277e1b.tar.bz2 notenoughupdates-1dcfd9774f30fe3d7357a48ca94cfa0fcf277e1b.zip | |
Useful Changes (#153)
* Added Trophy Fish Fished to 3rd page of pv
* Useful changes
Co-Authored-By: efefury <69400149+efefury@users.noreply.github.com>
Co-authored-by: efefury <69400149+efefury@users.noreply.github.com>
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/AHTweaks.java')
| -rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/AHTweaks.java | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/AHTweaks.java b/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/AHTweaks.java index 63c4fe8d..c4651b02 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/AHTweaks.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/AHTweaks.java @@ -57,12 +57,21 @@ public class AHTweaks { @Expose @ConfigOption( - name = "Enable BIN Warning", + name = "Enable Undercut BIN Warning", desc = "Ask for confirmation when BINing an item for below X% of lowestbin" ) @ConfigEditorBoolean @ConfigAccordionId(id = 1) - public boolean enableBINWarning = true; + public boolean underCutWarning = true; + + @Expose + @ConfigOption( + name = "Enable Overcut BIN Warning", + desc = "Ask for confirmation when BINing an item for over X% of lowestbin" + ) + @ConfigEditorBoolean + @ConfigAccordionId(id = 1) + public boolean overCutWarning = true; @Expose @ConfigOption( |
