Skip to content

Commit

Permalink
fix config default
Browse files Browse the repository at this point in the history
  • Loading branch information
xGinko committed Aug 6, 2024
1 parent 7002aab commit 1b2554f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public Unbreakables() {
this.blacklistMode = config.getBoolean(configPath + ".use-as-blacklist-instead", false);
this.checkStored = config.getBoolean(configPath + ".check-stored-items", false,
"Will delete shulkers and bundles if they contain unbreakables.");
this.skipZeroDurability = config.getBoolean(configPath + ".skip-zero-durability", PlatformUtil.getMinecraftVersion() < 16,
this.skipZeroDurability = config.getBoolean(configPath + ".skip-zero-durability", PlatformUtil.getMinecraftVersion() >= 16,
"Make sure to keep enabled on 1.16+, otherwise netherite tools\n" +
"will mistakenly be set to max durability, due to some bug in paper.");
this.whitelistedTypes = config.getList(configPath + ".whitelisted-items",
Expand Down

0 comments on commit 1b2554f

Please sign in to comment.