Skip to content

Commit b54704a

Browse files
committed
disable custom block breaking by default
1 parent 0b926c7 commit b54704a

File tree

1 file changed

+2
-2
lines changed
  • src/main/java/dev/dfonline/codeclient/config

1 file changed

+2
-2
lines changed

src/main/java/dev/dfonline/codeclient/config/Config.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public class Config {
4141
public boolean HighlightChestsWithAir = false;
4242
public int HighlightChestDuration = 10;
4343
public boolean UseIForLineScope = false;
44-
public boolean CustomBlockBreaking = true;
44+
public boolean CustomBlockBreaking = false;
4545
public boolean ChestPeeker = true;
4646

4747
private void save() {
@@ -226,7 +226,7 @@ public YetAnotherConfigLib getLibConfig() {
226226
.name(Text.literal("Custom Block Breaking"))
227227
.description(OptionDescription.of(Text.literal("Keep codeblocks safe from accidental breaking."),Text.literal("They will have the survival breaking animation."),Text.literal("Breaking multiple will temporarily increase the speed.")))
228228
.binding(
229-
true,
229+
false,
230230
() -> CustomBlockBreaking,
231231
opt -> CustomBlockBreaking = opt
232232
)

0 commit comments

Comments
 (0)