mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-27 21:19:00 +01:00
Don't allow players with modded clients to send empty (0 char) chat messages. Thanks to a PR by robin0van0der0v
This commit is contained in:
parent
dfbcd36ab7
commit
b369805590
@ -724,6 +724,11 @@ public class NetServerHandler extends NetHandler implements ICommandListener {
|
||||
|
||||
public boolean chat(String s) {
|
||||
if (!this.player.dead) {
|
||||
if (s.length() == 0) {
|
||||
a.warning(this.player.name + " tried to send an empty message");
|
||||
return false;
|
||||
}
|
||||
|
||||
if (s.startsWith("/")) {
|
||||
this.handleCommand(s);
|
||||
return true;
|
||||
|
Loading…
Reference in New Issue
Block a user