mirror of
https://github.com/ViaVersion/ViaVersion.git
synced 2024-11-25 03:25:11 +01:00
Remove fix which got merged into MCStructs (#3836)
This commit is contained in:
parent
4c7729e602
commit
8c4ff7ebfc
@ -93,14 +93,7 @@ public class Protocol1_9To1_8 extends AbstractProtocol<ClientboundPackets1_8, Cl
|
||||
return;
|
||||
}
|
||||
|
||||
final String reason = wrapper.read(Type.STRING);
|
||||
try {
|
||||
STRING_TO_JSON.write(wrapper, reason);
|
||||
} catch (Exception e) {
|
||||
// Dirty fix for https://github.com/Lenni0451/MCStructs/issues/4, I personally don't think it matters
|
||||
// too much since it's only the login disconnect message and nothing relevant to the gameplay
|
||||
wrapper.write(Type.COMPONENT, ComponentUtil.plainToJson(reason));
|
||||
}
|
||||
STRING_TO_JSON.write(wrapper, wrapper.read(Type.STRING));
|
||||
});
|
||||
|
||||
// Other Handlers
|
||||
|
Loading…
Reference in New Issue
Block a user