From 7ebee833e54e95ffcd9dcfbad5744e299102acd9 Mon Sep 17 00:00:00 2001 From: Moulberry Date: Mon, 19 Oct 2020 02:06:15 +1100 Subject: 1.4.2 --- .../java/io/github/moulberry/notenoughupdates/options/Options.java | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/main/java/io/github/moulberry/notenoughupdates/options/Options.java') diff --git a/src/main/java/io/github/moulberry/notenoughupdates/options/Options.java b/src/main/java/io/github/moulberry/notenoughupdates/options/Options.java index c8a596b1..55f81f53 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/options/Options.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/options/Options.java @@ -166,6 +166,11 @@ public class Options { "Show Dungeon Block Overlay Everywhere", false, "If true, will show the overlay for cracked bricks, etc. even when not in dungeons."); + public Option disableDungeonBlocks = new Option( + false, + "Disables the dungeon blocks feature", + false, + "If true, the dungeon block overlay will be disabled."); public Option paneWidthMult = new Option( 1.0, "Pane Width", @@ -435,6 +440,7 @@ public class Options { tryAddOption(invBazaarPrice, options); tryAddOption(invAuctionPrice, options); tryAddOption(dungeonBlocksEverywhere, options); + tryAddOption(disableDungeonBlocks, options); //Sliders tryAddOption(smoothAoteMillis, options); tryAddOption(bgBlurFactor, options); -- cgit