Do not kick plot owners on "/p deny *"

This commit is contained in:
Daniel 2020-02-23 17:30:32 +01:00 committed by GitHub
parent 449c9f9416
commit 49cd8baa27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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