diff --git a/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/commands/Deny.java b/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/commands/Deny.java index fc0ea61dc..44e3ec3f6 100644 --- a/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/commands/Deny.java +++ b/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/commands/Deny.java @@ -75,7 +75,7 @@ import java.util.UUID; } else { for (PlotPlayer plotPlayer : plot.getPlayersInPlot()) { // Ignore plot-owners - if (plot.isOwner(plotPlayer.getUUID())) { + if (plot.isAdded(plotPlayer.getUUID())) { continue; } handleKick(plotPlayer, plot);