From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: violetc <58360096+s-yh-china@users.noreply.github.com> Date: Wed, 2 Feb 2022 00:43:25 +0800 Subject: [PATCH] Allow vanilla properties def diff --git a/src/main/java/io/papermc/paper/configuration/GlobalConfiguration.java b/src/main/java/io/papermc/paper/configuration/GlobalConfiguration.java index 3e7086d31b2f101b2d6e982f3935922886cadc77..f16fa127406b6f48af21913e0b76d8dde6ed2a4b 100644 --- a/src/main/java/io/papermc/paper/configuration/GlobalConfiguration.java +++ b/src/main/java/io/papermc/paper/configuration/GlobalConfiguration.java @@ -136,12 +136,12 @@ public class GlobalConfiguration extends ConfigurationPart { public class UnsupportedSettings extends ConfigurationPart { @Comment("This setting controls if players should be able to break bedrock, end portals and other intended to be permanent blocks.") - public boolean allowPermanentBlockBreakExploits = false; + public boolean allowPermanentBlockBreakExploits = true; @Comment("This setting controls if player should be able to use TNT duplication, but this also allows duplicating carpet, rails and potentially other items") - public boolean allowPistonDuplication = false; + public boolean allowPistonDuplication = true; public boolean performUsernameValidation = true; @Comment("This setting controls if players should be able to create headless pistons.") - public boolean allowHeadlessPistons = false; + public boolean allowHeadlessPistons = true; } public Commands commands;