Changed default option for graceIgnorePlayerEnabled to false.

This commit is contained in:
2021-09-29 02:33:22 +01:00
parent 6ed20517e9
commit 96bbce84d4

View File

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