That check is also done in the LocalSession, let the LocalSession decide what to do with multiple packets.

This commit is contained in:
ReneZeidler 2014-02-01 07:24:29 -08:00
parent e70c82c7c0
commit 747de4cab7

View File

@ -39,10 +39,6 @@ public class CUIChannelListener implements PluginMessageListener {
@Override
public void onPluginMessageReceived(String channel, Player player, byte[] message) {
LocalSession session = plugin.getSession(player);
if (session.hasCUISupport()) { // Already initialized
return;
}
String text = new String(message, UTF_8_CHARSET);
session.handleCUIInitializationMessage(text);
}