Merge remote-tracking branch 'origin/v4' into v4

This commit is contained in:
Alexander Söderberg 2020-02-23 22:57:31 +01:00
commit 255cbbe98f

View File

@ -74,6 +74,10 @@ import java.util.UUID;
handleKick(UUIDHandler.getPlayer(uuid), plot);
} else {
for (PlotPlayer plotPlayer : plot.getPlayersInPlot()) {
// Ignore plot-owners
if (plot.isAdded(plotPlayer.getUUID())) {
continue;
}
handleKick(plotPlayer, plot);
}
}