mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-23 13:46:45 +01:00
Merge pull request #1 from hyWse/hyWse-patch-1
Do not kick plot owners on "/p deny *"
This commit is contained in:
commit
f605c0b113
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user