Change modifier of setState method (#685)

This commit is contained in:
John 2022-02-15 04:26:29 +01:00 committed by GitHub
parent f4f2ec09fe
commit 7211f65060
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -169,7 +169,7 @@ public class MinecraftProtocol extends PacketProtocol {
return this.state;
}
protected void setState(ProtocolState state) {
public void setState(ProtocolState state) {
this.state = state;
this.stateCodec = this.codec.getCodec(state);
}