Merge pull request #611 from SplotyCode/fix/scoreboatd

This commit is contained in:
Nassim Jahnke 2023-10-13 21:20:00 +10:00 committed by GitHub
commit 0912e33358
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -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
-

View File

@ -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();
}
}