diff options
author | Lulonaut <lulonaut@tutanota.de> | 2021-09-07 18:37:11 +0200 |
---|---|---|
committer | Lulonaut <lulonaut@tutanota.de> | 2021-09-07 18:37:11 +0200 |
commit | f47adcd23a55bc8e774d33f3725461599c3232c6 (patch) | |
tree | c0cf9ea389b229bb2b293990675a844b05b7cf66 /src | |
parent | 619129352be4a3aa4577060d49b2aa5cf162a432 (diff) | |
download | NotEnoughUpdates-f47adcd23a55bc8e774d33f3725461599c3232c6.tar.gz NotEnoughUpdates-f47adcd23a55bc8e774d33f3725461599c3232c6.tar.bz2 NotEnoughUpdates-f47adcd23a55bc8e774d33f3725461599c3232c6.zip |
add toggle to disable showing the treecap cooldown in item durability
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/ItemCooldowns.java | 4 | ||||
-rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/ItemOverlays.java | 9 |
2 files changed, 13 insertions, 0 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/ItemCooldowns.java b/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/ItemCooldowns.java index 053910bc..e18c28be 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/ItemCooldowns.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/ItemCooldowns.java @@ -65,6 +65,10 @@ public class ItemCooldowns { } public static long getTreecapCooldownWithPet(){ + if (!NotEnoughUpdates.INSTANCE.config.itemOverlays.enableCooldownInItemDurability){ + return 0; + } + PetInfoOverlay.Pet pet = PetInfoOverlay.getCurrentPet(); if (NotEnoughUpdates.INSTANCE.config.itemOverlays.enableMonkeyCheck && pet != null) { if (pet.petLevel != null && 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..c8515ad1 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"
)
|