From 5fd56876f1c2c2076354573b426f3465e4ab315b Mon Sep 17 00:00:00 2001 From: tastybento Date: Sun, 25 Apr 2021 10:05:21 -0700 Subject: [PATCH] Change settings to match defaults in config.yml --- src/main/java/world/bentobox/acidisland/AISettings.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/world/bentobox/acidisland/AISettings.java b/src/main/java/world/bentobox/acidisland/AISettings.java index 6f98119..9797e26 100644 --- a/src/main/java/world/bentobox/acidisland/AISettings.java +++ b/src/main/java/world/bentobox/acidisland/AISettings.java @@ -178,13 +178,13 @@ public class AISettings implements WorldSettings { @ConfigComment("It is the same for every dimension : Overworld, Nether and End.") @ConfigComment("This value cannot be changed mid-game and the plugin will not start if it is different.") @ConfigEntry(path = "world.distance-between-islands", needsReset = true) - private int islandDistance = 192; + private int islandDistance = 64; @ConfigComment("Default protection range radius in blocks. Cannot be larger than distance.") @ConfigComment("Admins can change protection sizes for players individually using /acid range set ") @ConfigComment("or set this permission: acidisland.island.range.") @ConfigEntry(path = "world.protection-range", overrideOnChange = true) - private int islandProtectionRange = 100; + private int islandProtectionRange = 50; @ConfigComment("Start islands at these coordinates. This is where new islands will start in the") @ConfigComment("world. These must be a factor of your island distance, but the plugin will auto")