mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 05:06:44 +01:00
Changed version number
This commit is contained in:
parent
264baf10e3
commit
9427bc7773
@ -359,7 +359,10 @@ public enum C {
|
|||||||
*/
|
*/
|
||||||
public String s() {
|
public String s() {
|
||||||
if(PlotMain.translations != null){
|
if(PlotMain.translations != null){
|
||||||
this.s = PlotMain.translations.getString(this.toString());
|
String t = PlotMain.translations.getString(this.toString());
|
||||||
|
if (t!=null) {
|
||||||
|
this.s = t;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (this.s.length() < 1) {
|
if (this.s.length() < 1) {
|
||||||
return this.d.replace("\\n", "\n");
|
return this.d.replace("\\n", "\n");
|
||||||
|
@ -115,7 +115,8 @@ public class PlotHelper {
|
|||||||
|
|
||||||
PlotId id = new PlotId(x, y);
|
PlotId id = new PlotId(x, y);
|
||||||
Plot plot = PlotMain.getPlots(world).get(id);
|
Plot plot = PlotMain.getPlots(world).get(id);
|
||||||
|
Plot plot2 = null;
|
||||||
|
|
||||||
if (lx) {
|
if (lx) {
|
||||||
if (ly) {
|
if (ly) {
|
||||||
if (!plot.settings.getMerged(1) || !plot.settings.getMerged(2)) {
|
if (!plot.settings.getMerged(1) || !plot.settings.getMerged(2)) {
|
||||||
@ -125,7 +126,7 @@ public class PlotHelper {
|
|||||||
}
|
}
|
||||||
if (!plot.settings.getMerged(1)) {
|
if (!plot.settings.getMerged(1)) {
|
||||||
changed = true;
|
changed = true;
|
||||||
Plot plot2 = PlotMain.getPlots(world).get(new PlotId(x + 1, y));
|
plot2 = PlotMain.getPlots(world).get(new PlotId(x + 1, y));
|
||||||
mergePlot(world, plot, plot2);
|
mergePlot(world, plot, plot2);
|
||||||
plot.settings.setMerged(1, true);
|
plot.settings.setMerged(1, true);
|
||||||
plot2.settings.setMerged(3, true);
|
plot2.settings.setMerged(3, true);
|
||||||
@ -134,7 +135,7 @@ public class PlotHelper {
|
|||||||
if (ly) {
|
if (ly) {
|
||||||
if (!plot.settings.getMerged(2)) {
|
if (!plot.settings.getMerged(2)) {
|
||||||
changed = true;
|
changed = true;
|
||||||
Plot plot2 = PlotMain.getPlots(world).get(new PlotId(x, y + 1));
|
plot2 = PlotMain.getPlots(world).get(new PlotId(x, y + 1));
|
||||||
mergePlot(world, plot, plot2);
|
mergePlot(world, plot, plot2);
|
||||||
plot.settings.setMerged(2, true);
|
plot.settings.setMerged(2, true);
|
||||||
plot2.settings.setMerged(0, true);
|
plot2.settings.setMerged(0, true);
|
||||||
@ -142,7 +143,10 @@ public class PlotHelper {
|
|||||||
}
|
}
|
||||||
if (changed) {
|
if (changed) {
|
||||||
result = true;
|
result = true;
|
||||||
DBFunc.setMerged(world.getName(), plot, plot.settings.getMerged());
|
DBFunc.setMerged(world.getName(), plot, plot.settings.getMerged());
|
||||||
|
if (plot2!=null) {
|
||||||
|
DBFunc.setMerged(world.getName(), plot2, plot2.settings.getMerged());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
name: PlotSquared
|
name: PlotSquared
|
||||||
main: com.intellectualcrafters.plot.PlotMain
|
main: com.intellectualcrafters.plot.PlotMain
|
||||||
version: 2.1
|
version: 2.1.1
|
||||||
load: STARTUP
|
load: STARTUP
|
||||||
description: >
|
description: >
|
||||||
Easy, yet powerful Plot World generation and management.
|
Easy, yet powerful Plot World generation and management.
|
||||||
|
Loading…
Reference in New Issue
Block a user