4.3.1 Release - Fix set display preview being sent prematurely #2918

This commit is contained in:
Myles 2022-06-07 23:11:21 +01:00
parent 9a34ff2a51
commit e9bccda259
2 changed files with 2 additions and 2 deletions

View File

@ -244,7 +244,7 @@ public final class EntityPackets extends EntityRewriter<Protocol1_19To1_18_2> {
// Disable the chat preview
final PacketWrapper displayPreviewPacket = wrapper.create(ClientboundPackets1_19.SET_DISPLAY_CHAT_PREVIEW);
displayPreviewPacket.write(Type.BOOLEAN, false);
displayPreviewPacket.send(Protocol1_19To1_18_2.class);
displayPreviewPacket.scheduleSend(Protocol1_19To1_18_2.class);
});
}
});

View File

@ -1,5 +1,5 @@
# Project properties - we put these here so they can be modified without causing a recompile of the build scripts
projectVersion=4.3.0
projectVersion=4.3.1
# Gradle properties
org.gradle.daemon=true