Merge pull request #523 from BentoBoxWorld/develop

Remove unused setting
This commit is contained in:
tastybento 2024-07-02 15:26:34 -07:00 committed by GitHub
commit 5660773139
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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;
}
}