From 7aebd9b74bd3d18a459a7dfd8fd4865da9994608 Mon Sep 17 00:00:00 2001 From: dordsor21 Date: Fri, 22 Feb 2019 15:11:35 +0000 Subject: [PATCH] Set wall filling on merge --- .../plotsquared/plot/generator/ClassicPlotManager.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/generator/ClassicPlotManager.java b/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/generator/ClassicPlotManager.java index 988a6a7b4..5a44f30b2 100644 --- a/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/generator/ClassicPlotManager.java +++ b/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/generator/ClassicPlotManager.java @@ -432,7 +432,9 @@ public class ClassicPlotManager extends SquarePlotManager { */ @Override public boolean finishPlotMerge(PlotArea plotArea, List plotIds) { final BlockBucket block = ((ClassicPlotWorld) plotArea).CLAIMED_WALL_BLOCK; + final BlockBucket wallBlock = ((ClassicPlotWorld) plotArea).WALL_FILLING; plotIds.forEach(id -> setWall(plotArea, id, block)); + plotIds.forEach(id -> setWallFilling(plotArea, id, wallBlock)); return true; }