Fixes #1922 Banned people can still "talk" in plot

This commit is contained in:
Jesse Boyd
2019-11-12 20:52:14 +00:00
parent c23086259d
commit f518c47e09

View File

@@ -1024,6 +1024,9 @@ import java.util.regex.Pattern;
if (plot == null) { if (plot == null) {
return; return;
} }
if (plot.isDenied(plotPlayer.getUUID())) {
return;
}
event.setCancelled(true); event.setCancelled(true);
String message = event.getMessage(); String message = event.getMessage();
String format = Captions.PLOT_CHAT_FORMAT.getTranslated(); String format = Captions.PLOT_CHAT_FORMAT.getTranslated();