From 38425a1eaed2749bbe11982332a8bfcca48281e5 Mon Sep 17 00:00:00 2001 From: Hannes Greule Date: Fri, 26 Jun 2020 13:49:17 +0200 Subject: [PATCH] Update world border on Plot#claim (Fixes PS-13) --- Core/src/main/java/com/plotsquared/core/plot/Plot.java | 1 + 1 file changed, 1 insertion(+) diff --git a/Core/src/main/java/com/plotsquared/core/plot/Plot.java b/Core/src/main/java/com/plotsquared/core/plot/Plot.java index 0d756ac6c..46ce9f24c 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/Plot.java +++ b/Core/src/main/java/com/plotsquared/core/plot/Plot.java @@ -1751,6 +1751,7 @@ public class Plot { } } else { area.addPlot(this); + updateWorldBorder(); } setSign(player.getName()); MainUtil.sendMessage(player, Captions.CLAIMED);