adjust config order

This commit is contained in:
xGinko 2023-10-03 00:17:11 +02:00
parent b892e6afb4
commit 1b972bbecc
2 changed files with 4 additions and 4 deletions

View File

@ -62,10 +62,10 @@ public class Config {
createTitledSection("Gameplay", "gameplay");
config.addDefault("gameplay.villagers-spawn-as-adults.enable", false);
config.addDefault("gameplay.prevent-trading-with-unoptimized.enable", false);
config.addDefault("gameplay.prevent-damage.enable", true);
config.addDefault("gameplay.prevent-targeting.enable", true);
config.addDefault("gameplay.villager-leveling.enable", true);
config.addDefault("gameplay.trade-restocking.enable", true);
config.addDefault("gameplay.prevent-targeting.enable", true);
config.addDefault("gameplay.prevent-damage.enable", true);
}
public void createTitledSection(@NotNull String title, @NotNull String path) {

View File

@ -62,10 +62,10 @@ public class Config {
createTitledSection("Gameplay", "gameplay");
config.addDefault("gameplay.villagers-spawn-as-adults.enable", false);
config.addDefault("gameplay.prevent-trading-with-unoptimized.enable", false);
config.addDefault("gameplay.prevent-damage.enable", true);
config.addDefault("gameplay.prevent-targeting.enable", true);
config.addDefault("gameplay.villager-leveling.enable", true);
config.addDefault("gameplay.trade-restocking.enable", true);
config.addDefault("gameplay.prevent-targeting.enable", true);
config.addDefault("gameplay.prevent-damage.enable", true);
}
public void createTitledSection(@NotNull String title, @NotNull String path) {