From 0e2227e76dc81c5ddf9de11a4a7ce9899cde9383 Mon Sep 17 00:00:00 2001 From: Florian CUNY Date: Sun, 9 Dec 2018 14:13:05 +0100 Subject: [PATCH] Updated maxIslands comment --- src/main/java/world/bentobox/bskyblock/Settings.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/world/bentobox/bskyblock/Settings.java b/src/main/java/world/bentobox/bskyblock/Settings.java index 07a86c2..3b2cb6e 100644 --- a/src/main/java/world/bentobox/bskyblock/Settings.java +++ b/src/main/java/world/bentobox/bskyblock/Settings.java @@ -97,8 +97,8 @@ public class Settings implements DataObject, WorldSettings { @ConfigEntry(path = "world.sea-height", needsReset = true) private int seaHeight = 0; - @ConfigComment("Maximum number of islands in the world. Set to -1 for unlimited.") - @ConfigComment("If the number of islands is greater than this number, no new island will be created.") + @ConfigComment("Maximum number of islands in the world. Set to -1 or 0 for unlimited.") + @ConfigComment("If the number of islands is greater than this number, it will stop players from creating islands.") @ConfigEntry(path = "world.max-islands") private int maxIslands = -1;