Archiviert
13
0

Fix issue with component array converter (#372)

Dieser Commit ist enthalten in:
蒋天蓓 2017-07-07 23:42:17 +08:00 committet von Dan Mulloy
Ursprung 501244cb3c
Commit 59171c5443

Datei anzeigen

@ -1381,7 +1381,7 @@ public class PacketContainer implements Serializable {
private static class ComponentArrayConverter implements EquivalentConverter<WrappedChatComponent[]> { private static class ComponentArrayConverter implements EquivalentConverter<WrappedChatComponent[]> {
private static final EquivalentConverter<WrappedChatComponent[]> DELEGATE; private static final EquivalentConverter<WrappedChatComponent[]> DELEGATE;
static { static {
if (!PacketType.Play.Server.UPDATE_SIGN.isDeprecated()) { if (MinecraftReflection.signUpdateExists()) {
DELEGATE = new LegacyComponentConverter(); DELEGATE = new LegacyComponentConverter();
} else { } else {
DELEGATE = new NBTComponentConverter(); DELEGATE = new NBTComponentConverter();