Default chest-protection.disable-off-check to true.

Fixes #1890.
This commit is contained in:
wizjany 2022-03-24 10:01:17 -04:00
parent 938f0c3b66
commit 271b32aa1d
No known key found for this signature in database
GPG Key ID: 1DB5861C03B76B5E
1 changed files with 1 additions and 1 deletions

View File

@ -244,7 +244,7 @@ public class BukkitWorldConfiguration extends YamlWorldConfiguration {
disableDeathMessages = getBoolean("player-damage.disable-death-messages", false);
signChestProtection = getBoolean("chest-protection.enable", false);
disableSignChestProtectionCheck = getBoolean("chest-protection.disable-off-check", false);
disableSignChestProtectionCheck = getBoolean("chest-protection.disable-off-check", true);
if (signChestProtection) {
log.warning("Sign-based chest protection is deprecated for removal in a future version. See https://worldguard.enginehub.org/en/latest/chest-protection/ for details.");
} else {