From f22173df7adcefdf97e74ca7697f7c597167c1e8 Mon Sep 17 00:00:00 2001 From: Leomixer17 Date: Sun, 4 Mar 2018 23:26:25 +0100 Subject: [PATCH] Updated Setting all signs (markdown) --- Setting-all-signs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Setting-all-signs.md b/Setting-all-signs.md index d73354d..1fe85bf 100644 --- a/Setting-all-signs.md +++ b/Setting-all-signs.md @@ -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); }