chat update

This commit is contained in:
ImproperIssues
2023-04-16 20:44:06 -07:00
parent 1f32aa2d7d
commit edfb916ee5

View File

@@ -70,9 +70,6 @@ public class ChatConstraints {
text.setText(Text.builder("&cPlease do not send unsupported characters in chat!" + "\n&cMessage: &f" + message + "\n&cCaught: &e" + nonAllowed).prefix().color().build()); text.setText(Text.builder("&cPlease do not send unsupported characters in chat!" + "\n&cMessage: &f" + message + "\n&cCaught: &e" + nonAllowed).prefix().color().build());
text.setHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, TextComponent.fromLegacyText(Text.color("&cMessage: &f" + message + "\n&cCaught: &e" + nonAllowed)))); text.setHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, TextComponent.fromLegacyText(Text.color("&cMessage: &f" + message + "\n&cCaught: &e" + nonAllowed))));
player.spigot().sendMessage(text); player.spigot().sendMessage(text);
ServerUtils.forEachStaff(p -> {
p.spigot().sendMessage(text);
});
return false; return false;
} }
@@ -104,9 +101,9 @@ public class ChatConstraints {
player.sendMessage(Text.builder("&cPlease do not swear in chat!").color().prefix().build()); player.sendMessage(Text.builder("&cPlease do not swear in chat!").color().prefix().build());
player.spigot().sendMessage(text); player.spigot().sendMessage(text);
ServerUtils.forEachStaff(p -> { ServerUtils.forEachStaff(staff -> {
p.sendMessage(Text.builder("&b" + player.getName() + " &3has triggered the &bAntiSwear&3:").prefix().color().build()); staff.sendMessage(Text.builder("&b" + player.getName() + " &3has triggered the &bAntiSwear&3:").prefix().color().build());
p.spigot().sendMessage(text); staff.spigot().sendMessage(text);
}); });
return false; return false;
} }