Cap Channel Registrations

This commit is contained in:
md_5 2019-01-05 16:21:07 +11:00
parent a610dcd821
commit b021230837

View File

@ -1209,6 +1209,7 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
}
public void addChannel(String channel) {
Preconditions.checkState(channels.size() < 128, "Cannot register channel '%s'. Too many channels registered!", channel);
channel = StandardMessenger.validateAndCorrectChannel(channel);
if (channels.add(channel)) {
server.getPluginManager().callEvent(new PlayerRegisterChannelEvent(this, channel));