Updated Setting all signs (markdown)

Leomixer17 2018-03-04 23:26:25 +01:00
parent e808c0749b
commit f22173df7a

@ -6,7 +6,7 @@ This script will fix all signs in the world.
var plots = PS.sortPlotsByTemp(PS.getPlots());
for (var i = 0; i < plots.size(); i++) {
var plot = plots.get(i);
if (!plot.isMerged() || plot.getBottomPlot().equals(plot)) {
if (plot.isBasePlot()) {
plot.setSign();
PS.class.static.log('&cSetting sign for: ' + plot);
}