fix OpenScreenPayload title being decoded but not encoded ()

This commit is contained in:
Leximon 2024-03-27 17:47:42 +01:00 committed by GitHub
parent 9b3069f652
commit e78eae2df0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -103,6 +103,7 @@ public final class Networking implements ModInitializer {
private void write(RegistryByteBuf buf) {
buf.writeIdentifier(this.identifier);
buf.writeByte(this.syncId);
TextCodecs.REGISTRY_PACKET_CODEC.encode(buf, this.title);
this.innerCodec.encode(buf, this.data);
}