Skipping deprecation here, this exists for so long and and has been superseded by permissions now.
This commit is contained in:
N0tMyFaultOG 2020-12-04 17:33:41 +01:00
parent 4ff50525ed
commit cfd3c159f9
No known key found for this signature in database
GPG Key ID: 823348042DA95A81

View File

@ -466,7 +466,6 @@ public abstract class PlotArea {
options.put("event.spawn.custom", this.isSpawnCustom());
options.put("event.spawn.breeding", this.isSpawnBreeding());
options.put("world.border", this.hasWorldBorder());
options.put("limits.max-members", this.getMaxPlotMembers());
options.put("home.default", "side");
String position = config.getString("home.nonmembers",
config.getBoolean("home.allow-nonmembers", false) ?
@ -1232,10 +1231,6 @@ public abstract class PlotArea {
return this.generator;
}
public int getMaxPlotMembers() {
return this.maxPlotMembers;
}
public boolean isAutoMerge() {
return this.autoMerge;
}