Cap Channel Registrations

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot 2019-01-05 16:21:07 +11:00
parent fe7c2ee97f
commit 3eede450ed

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));