diff --git a/src/main/java/world/bentobox/bskyblock/Settings.java b/src/main/java/world/bentobox/bskyblock/Settings.java index 5727956..ebb52e1 100644 --- a/src/main/java/world/bentobox/bskyblock/Settings.java +++ b/src/main/java/world/bentobox/bskyblock/Settings.java @@ -116,10 +116,6 @@ public class Settings implements WorldSettings { @ConfigEntry(path = "world.island-height") private int islandHeight = 120; - @ConfigComment("Disallow team members from having their own islands.") - @ConfigEntry(path = "world.disallow-team-member-islands") - private boolean disallowTeamMemberIslands = false; - @ConfigComment("Use your own world generator for this world.") @ConfigComment("In this case, the plugin will not generate anything.") @ConfigComment("If used, you must specify the world name and generator in the bukkit.yml file.") @@ -1821,17 +1817,4 @@ public class Settings implements WorldSettings { this.makeEndPortals = makeEndPortals; } - /** - * @return the disallowTeamMemberIslands - */ - public boolean isDisallowTeamMemberIslands() { - return disallowTeamMemberIslands; - } - - /** - * @param disallowTeamMemberIslands the disallowTeamMemberIslands to set - */ - public void setDisallowTeamMemberIslands(boolean disallowTeamMemberIslands) { - this.disallowTeamMemberIslands = disallowTeamMemberIslands; - } }