mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 21:26:45 +01:00
Merge remote-tracking branch 'origin/v4' into v4
This commit is contained in:
commit
255cbbe98f
@ -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.isAdded(plotPlayer.getUUID())) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
handleKick(plotPlayer, plot);
|
handleKick(plotPlayer, plot);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user