diff options
author | DoKM <mcazzyman@gmail.com> | 2021-07-25 19:42:08 +0200 |
---|---|---|
committer | DoKM <mcazzyman@gmail.com> | 2021-07-25 19:42:08 +0200 |
commit | be483e502d1db2ea4a552169034c7b4546197444 (patch) | |
tree | c5116ce6fb9bcd40d8f84fc2b589c1b8d06f1f21 /src/main | |
parent | 57a5639f6cfaed3dff8473ae7b59d59a89727fda (diff) | |
download | NotEnoughUpdates-be483e502d1db2ea4a552169034c7b4546197444.tar.gz NotEnoughUpdates-be483e502d1db2ea4a552169034c7b4546197444.tar.bz2 NotEnoughUpdates-be483e502d1db2ea4a552169034c7b4546197444.zip |
Add toggle for etherwarp overlay text
Diffstat (limited to 'src/main')
2 files changed, 10 insertions, 1 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/CustomItemEffects.java b/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/CustomItemEffects.java index 83ad8a0d..cc13f59a 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/CustomItemEffects.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/CustomItemEffects.java @@ -301,7 +301,7 @@ public class CustomItemEffects { ItemStack held = Minecraft.getMinecraft().thePlayer.getHeldItem(); String heldInternal = NotEnoughUpdates.INSTANCE.manager.getInternalNameForItem(held); - if(usingEtherwarp) { + if(usingEtherwarp && NotEnoughUpdates.INSTANCE.config.itemOverlays.enableEtherwarpHelperOverlay) { String denyTpReason = null; if(etherwarpRaycast == null) { denyTpReason = "Too far!"; 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 f6cc91ec..501bc8ae 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 @@ -175,6 +175,15 @@ public class ItemOverlays { @Expose
@ConfigOption(
+ name = "Enable etherwarp helper overlay",
+ desc = "Display an overlay which tells you if the etherwarp will fail."
+ )
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 7)
+ public boolean enableEtherwarpHelperOverlay = true;
+
+ @Expose
+ @ConfigOption(
name = "Highlight Colour",
desc = "Change the colour of the etherwarp target block outline"
)
|