mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-07-23 07:40:28 +02:00
Fixes #1922 Banned people can still "talk" in plot
This commit is contained in:
@@ -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();
|
||||||
|
Reference in New Issue
Block a user