1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-04-01 12:11:45 +02:00

Fix "Commands Only" chat flag. Fixes BUKKIT-2238

Thanks for the commit @mrapple
This commit is contained in:
feildmaster 2012-12-05 20:47:11 -06:00
parent 6a04fd98ad
commit 72ee1f3182

View file

@ -853,7 +853,7 @@ public class NetServerHandler extends NetHandler {
}
// CraftBukkit start
if (this.player.getChatFlags() == 1) {
if (this.player.getChatFlags() == 1 && !s.startsWith("/")) {
this.sendPacket(new Packet3Chat("Cannot send chat message."));
return;
}