Fix reset score reading

This commit is contained in:
Nassim Jahnke 2023-12-07 23:17:55 +01:00
parent 3a69dda548
commit e24a170e77
No known key found for this signature in database
GPG Key ID: EF6771C01F6EF02F

View File

@ -88,7 +88,9 @@ public final class Protocol1_20_2To1_20_3 extends BackwardsProtocol<ClientboundP
registerClientbound(ClientboundPackets1_20_3.RESET_SCORE, ClientboundPackets1_20_2.UPDATE_SCORE, wrapper -> {
wrapper.passthrough(Type.STRING); // Owner
wrapper.write(Type.BYTE, (byte) 1); // Reset score
wrapper.passthrough(Type.STRING); // Objective name
final String objectiveName = wrapper.read(Type.OPTIONAL_STRING);
wrapper.write(Type.STRING, objectiveName != null ? objectiveName : ""); // Objective name
});
registerClientbound(ClientboundPackets1_20_3.UPDATE_SCORE, wrapper -> {
wrapper.passthrough(Type.STRING); // Owner