Updated to properly use the permissions system from com.plotsquared.core.util.Permissions and com.plotsquared.core.configuration.Captions

This commit is contained in:
Cheezybo99 2020-04-18 22:10:33 +01:00 committed by Alexander Söderberg
parent 2eda56bc1f
commit 4d1b08a628

View File

@ -946,7 +946,7 @@ public class PlayerEvents extends PlotListener implements Listener {
|| area.isForcingPlotChat())) { || area.isForcingPlotChat())) {
return; return;
} }
if (plot.isDenied(plotPlayer.getUUID()) && !plotPlayer.hasPermission("plots.admin.command.chat")) { if (plot.isDenied(plotPlayer.getUUID()) && !Permissions.hasPermission(plotPlayer, Captions.PERMISSION_COMMANDS_CHAT)) {
return; return;
} }
event.setCancelled(true); event.setCancelled(true);