Let the handshake packet refresh the CUI protocol version (it happens that players join with another client before the previous session expires) and also send the current selection when receiving a handshake packet (for when the player joins and the previous session did not expire)

This commit is contained in:
ReneZeidler 2014-02-01 08:21:59 -08:00
parent 747de4cab7
commit e25e1bfe67
2 changed files with 5 additions and 5 deletions

View File

@ -605,13 +605,12 @@ public class LocalSession {
}
public void handleCUIInitializationMessage(String text) {
if (hasCUISupport()) {
return;
}
if(!hasCUISupport()) {
setCUISupport(true);
}
String[] split = text.split("\\|");
if (split.length > 1 && split[0].equalsIgnoreCase("v")) { // enough fields and right message
setCUISupport(true);
try {
setCUIVersion(Integer.parseInt(split[1]));
} catch (NumberFormatException e) {

View File

@ -41,5 +41,6 @@ public class CUIChannelListener implements PluginMessageListener {
LocalSession session = plugin.getSession(player);
String text = new String(message, UTF_8_CHARSET);
session.handleCUIInitializationMessage(text);
session.describeCUI(plugin.wrapPlayer(player));
}
}