diff options
author | nea <nea@nea.moe> | 2023-02-17 20:52:55 +0100 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-02-17 20:52:55 +0100 |
commit | a851b80bccac8a190b3f1532bcb3de1b7e1c6a3f (patch) | |
tree | 89f2a4009cf6e00c48823449170dccbf06aa2ac3 /src/main/java/io | |
parent | 35bb2b7211882edbd7211237e80f6f6d55fddaa6 (diff) | |
download | NotEnoughUpdates-a851b80bccac8a190b3f1532bcb3de1b7e1c6a3f.tar.gz NotEnoughUpdates-a851b80bccac8a190b3f1532bcb3de1b7e1c6a3f.tar.bz2 NotEnoughUpdates-a851b80bccac8a190b3f1532bcb3de1b7e1c6a3f.zip |
Purge cheapest museum item
Diffstat (limited to 'src/main/java/io')
-rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/Museum.java | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/Museum.java b/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/Museum.java index 6f03c2bb..c476fc3b 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/Museum.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/Museum.java @@ -22,7 +22,6 @@ package io.github.moulberry.notenoughupdates.options.seperateSections; import com.google.gson.annotations.Expose; import io.github.moulberry.notenoughupdates.core.config.annotations.ConfigEditorBoolean; import io.github.moulberry.notenoughupdates.core.config.annotations.ConfigEditorColour; -import io.github.moulberry.notenoughupdates.core.config.annotations.ConfigEditorDropdown; import io.github.moulberry.notenoughupdates.core.config.annotations.ConfigOption; public class Museum { @@ -43,22 +42,4 @@ public class Museum { @ConfigEditorColour public String museumItemColor = "0:255:0:255:0"; - @Expose - @ConfigOption( - name = "Show Items to donate", - desc = "Show the cheapest items you have not yet donated to the Museum" - ) - @ConfigEditorBoolean - public boolean museumCheapestItemOverlay = true; - - @Expose - @ConfigOption( - name = "Value calculation", - desc = "Choose the source for the value calculation" - ) - @ConfigEditorDropdown( - values = {"Lowest BIN", "Craft cost"} - ) - public int museumCheapestItemOverlayValueSource = 0; - } |