Set wall filling on merge

This commit is contained in:
dordsor21 2019-02-22 15:11:35 +00:00
parent be51d8e159
commit 7aebd9b74b

View File

@ -432,7 +432,9 @@ public class ClassicPlotManager extends SquarePlotManager {
*/
@Override public boolean finishPlotMerge(PlotArea plotArea, List<PlotId> 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;
}