aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/Mining.java
diff options
context:
space:
mode:
authorjani270 <69345714+jani270@users.noreply.github.com>2023-12-14 18:05:48 +0100
committerGitHub <noreply@github.com>2023-12-14 18:05:48 +0100
commit27bfa73de7df93814ca7e60c7d8c25ac6fed6edd (patch)
treea468fc1843eb78503071a855556a8bdb76364c25 /src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/Mining.java
parent4f487f0fb54f7e239fa5298f55ed3011150c4677 (diff)
downloadnotenoughupdates-27bfa73de7df93814ca7e60c7d8c25ac6fed6edd.tar.gz
notenoughupdates-27bfa73de7df93814ca7e60c7d8c25ac6fed6edd.tar.bz2
notenoughupdates-27bfa73de7df93814ca7e60c7d8c25ac6fed6edd.zip
Added option to show skymall perk outside of mining islands and fixed skymall showing the wrong perk (#965)
* Fixed Skymall showing wrong perk * Added option to show skymall perk outside of mining islands * Fixed upsi
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/Mining.java')
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/Mining.java21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/Mining.java b/src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/Mining.java
index de65f3e9..38aefcaf 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/Mining.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/Mining.java
@@ -240,6 +240,27 @@ public class Mining {
@Expose
@ConfigOption(
+ name = "Sky Mall Location",
+ desc = "Change when the Sky Mall perk gets shown"
+ )
+ @ConfigEditorDropdown(
+ values = {"Dwarven Mines+Crystal Hollows", "Everywhere except dungeons", "Everywhere"}
+ )
+ @ConfigAccordionId(id = 2)
+ public int skyMallDisplayEnabledLocations = 0;
+
+ @Expose
+ @ConfigOption(
+ name = "Sky Mall Tab",
+ desc = "Only show the Sky Mall perk when tab list is open\n" +
+ "§cThis only works outside of Dwarven Caves!"
+ )
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 2)
+ public boolean skyMallDisplayOnlyShowTab = false;
+
+ @Expose
+ @ConfigOption(
name = "Commission Task Tips",
desc = "Show tips to help complete commission tasks"
)