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

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.isOwner(plotPlayer.getUUID())) {
continue;
}
handleKick(plotPlayer, plot);
}
}