mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 13:16:45 +01:00
Merge pull request #1313 from MinelinkNetwork/blocked-cmds
Only show blocked-cmds message when event is cancelled
This commit is contained in:
commit
6b95e57d9e
@ -412,7 +412,6 @@ public class PlayerEvents extends PlotListener implements Listener {
|
|||||||
pattern = RegExUtil.compiledPatterns.get(s);
|
pattern = RegExUtil.compiledPatterns.get(s);
|
||||||
}
|
}
|
||||||
if (pattern.matcher(msg).matches()) {
|
if (pattern.matcher(msg).matches()) {
|
||||||
MainUtil.sendMessage(pp, C.COMMAND_BLOCKED);
|
|
||||||
String perm;
|
String perm;
|
||||||
if (plot.isAdded(pp.getUUID())) {
|
if (plot.isAdded(pp.getUUID())) {
|
||||||
perm = "plots.admin.command.blocked-cmds.shared";
|
perm = "plots.admin.command.blocked-cmds.shared";
|
||||||
@ -420,6 +419,7 @@ public class PlayerEvents extends PlotListener implements Listener {
|
|||||||
perm = "plots.admin.command.blocked-cmds.other";
|
perm = "plots.admin.command.blocked-cmds.other";
|
||||||
}
|
}
|
||||||
if (!Permissions.hasPermission(pp, perm)) {
|
if (!Permissions.hasPermission(pp, perm)) {
|
||||||
|
MainUtil.sendMessage(pp, C.COMMAND_BLOCKED);
|
||||||
event.setCancelled(true);
|
event.setCancelled(true);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user