3
0
Mirror von https://github.com/ViaVersion/ViaBackwards.git synchronisiert 2024-07-03 14:18:03 +02:00

Merge pull request #611 from SplotyCode/fix/scoreboatd

Dieser Commit ist enthalten in:
Nassim Jahnke 2023-10-13 21:20:00 +10:00 committet von GitHub
Commit 0912e33358
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23
2 geänderte Dateien mit 4 neuen und 0 gelöschten Zeilen

Datei anzeigen

@ -34,6 +34,7 @@ Known issues
1.17 will not be able to see or interact with blocks below y=0 and above y=255
* <1.17 clients on 1.17+ servers might experience inventory desyncs on certain inventory click actions
* Sound mappings are incomplete ([see here](https://github.com/ViaVersion/ViaBackwards/issues/326))
* <1.19.4 clients on 1.20+ servers won't be able to use the smithing table
Other Links
-

Datei anzeigen

@ -128,6 +128,9 @@ public class ChatUtil {
current = legacy.charAt(++i);
lastState.processNextControlChar(current);
}
if (isPrefix && !lastState.equals(builderState)) {
lastState.appendTo(builder);
}
return builder.toString();
}
}