Changed default option for graceIgnorePlayerEnabled to false.

This commit is contained in:
2021-09-29 02:33:22 +01:00
parent b0805b708e
commit 3562fa393d

View File

@ -45,7 +45,7 @@ public class Config {
.defineInRange("graceDuration", 10, 1, Integer.MAX_VALUE/40); .defineInRange("graceDuration", 10, 1, Integer.MAX_VALUE/40);
POST_GRACE_IGNORE_PLAYER_ENABLED = builder POST_GRACE_IGNORE_PLAYER_ENABLED = builder
.comment("Whether mobs will ignore a player during their grace period.") .comment("Whether mobs will ignore a player during their grace period.")
.define("graceIgnorePlayerEnabled", true); .define("graceIgnorePlayerEnabled", false);
builder.pop(); builder.pop();
builder.push("water_protection"); builder.push("water_protection");
POST_DROWN_ENABLED = builder POST_DROWN_ENABLED = builder