aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io/github/moulberry/notenoughupdates/options
diff options
context:
space:
mode:
authorDoKM <54663875+DoKM@users.noreply.github.com>2021-09-07 20:10:18 +0200
committerGitHub <noreply@github.com>2021-09-07 20:10:18 +0200
commit5fd6051b3f577b8ea802bd043fda6be47cf1453d (patch)
tree0d65762d67250e874c5750437620c7297c5718cb /src/main/java/io/github/moulberry/notenoughupdates/options
parent619129352be4a3aa4577060d49b2aa5cf162a432 (diff)
parent5dff658657c24581a6dc30f2b5a4785bde96b8ac (diff)
downloadnotenoughupdates-5fd6051b3f577b8ea802bd043fda6be47cf1453d.tar.gz
notenoughupdates-5fd6051b3f577b8ea802bd043fda6be47cf1453d.tar.bz2
notenoughupdates-5fd6051b3f577b8ea802bd043fda6be47cf1453d.zip
Merge pull request #30 from Lulonaut/master
Add toggle for disabling treecap cooldown in item durability
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/options')
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/ItemOverlays.java11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/ItemOverlays.java b/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/ItemOverlays.java
index 4e4524e2..9d0814d5 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/ItemOverlays.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/ItemOverlays.java
@@ -27,6 +27,15 @@ public class ItemOverlays {
@Expose
@ConfigOption(
+ name = "Show in Item durability",
+ desc = "Show the cooldown of the Treecapitator in the item durability"
+ )
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 0)
+ public boolean enableCooldownInItemDurability = true;
+
+ @Expose
+ @ConfigOption(
name = "Overlay Colour",
desc = "Change the colour of the overlay"
)
@@ -37,7 +46,7 @@ public class ItemOverlays {
@Expose
@ConfigOption(
name = "Enable Monkey Pet Check",
- desc = "Will check use the API to check what pet you're using\nto determine the cooldown based off of if you have monkey pet."
+ desc = "Will check using the API to check what pet you're using\nto determine the cooldown based off of if you have a monkey pet."
)
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)