mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-07-05 23:24:43 +02:00
Compare commits
4 Commits
6.10.0
...
refactor/v
Author | SHA1 | Date | |
---|---|---|---|
f54bb88394 | |||
3446b913cd | |||
8b8fd6aab7 | |||
520bb64eca |
@ -251,6 +251,7 @@ public class Auto extends SubCommand {
|
||||
TranslatableCaption.of("permission.no_permission"),
|
||||
Template.of("node", String.valueOf(Permission.PERMISSION_AUTO_MEGA))
|
||||
);
|
||||
return false;
|
||||
}
|
||||
if (!force && sizeX * sizeZ > Settings.Claim.MAX_AUTO_AREA) {
|
||||
player.sendMessage(
|
||||
|
@ -176,7 +176,7 @@ public class DatabaseCommand extends SubCommand {
|
||||
);
|
||||
worldFile.renameTo(newFile);
|
||||
}
|
||||
plot.setId(newId.copy());
|
||||
plot.setId(newId);
|
||||
plot.setArea(pa);
|
||||
plots.add(plot);
|
||||
continue;
|
||||
|
@ -1836,8 +1836,8 @@ public class Plot {
|
||||
}
|
||||
// Swap cached
|
||||
final PlotId temp = PlotId.of(this.getId().getX(), this.getId().getY());
|
||||
this.id = plot.getId().copy();
|
||||
plot.id = temp.copy();
|
||||
this.id = plot.getId();
|
||||
plot.id = temp;
|
||||
this.area.removePlot(this.getId());
|
||||
plot.area.removePlot(plot.getId());
|
||||
this.area.addPlotAbs(this);
|
||||
@ -1863,7 +1863,7 @@ public class Plot {
|
||||
return false;
|
||||
}
|
||||
this.area.removePlot(this.id);
|
||||
this.id = plot.getId().copy();
|
||||
this.id = plot.getId();
|
||||
this.area.addPlotAbs(this);
|
||||
DBFunc.movePlot(this, plot);
|
||||
TaskManager.runTaskLater(whenDone, TaskTime.ticks(1L));
|
||||
|
@ -110,9 +110,11 @@ public final class PlotId {
|
||||
* Get a copy of the plot ID
|
||||
*
|
||||
* @return Plot ID copy
|
||||
* @deprecated PlotId is immutable, copy is not required.
|
||||
*/
|
||||
@Deprecated(forRemoval = true, since = "TODO")
|
||||
public @NonNull PlotId copy() {
|
||||
return of(this.getX(), this.getY());
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -19,7 +19,7 @@ plugins {
|
||||
}
|
||||
|
||||
group = "com.plotsquared"
|
||||
version = "6.10.0"
|
||||
version = "6.10.1-SNAPSHOT"
|
||||
|
||||
subprojects {
|
||||
group = rootProject.group
|
||||
@ -65,7 +65,7 @@ subprojects {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(platform("com.intellectualsites.bom:bom-1.18.x:1.14"))
|
||||
implementation(platform("com.intellectualsites.bom:bom-1.18.x:1.15"))
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
Reference in New Issue
Block a user