Update addsigns.js

This commit is contained in:
Leomixer17 2019-07-06 01:16:45 +02:00 committed by Matt
parent 392ef51a6f
commit e4a345880e

View File

@ -4,7 +4,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.getMerged(0)) {
if (plot.isBasePlot()) {
plot.setSign();
PS.class.static.log('&cSetting sign for: ' + plot);
}