geforkt von Mirrors/FastAsyncWorldEdit
Only enable CUI support when the message is valid.
Also the check if support isn't already enabled is not really needed, as it will just overwrite the field with the same value.
Dieser Commit ist enthalten in:
Ursprung
c47f50696d
Commit
be8bb784f8
@ -605,12 +605,9 @@ public class LocalSession {
|
||||
}
|
||||
|
||||
public void handleCUIInitializationMessage(String text) {
|
||||
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) {
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren