You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Represents a packet that is backed by a version. Clientbound versioned packets will only be handled if the incoming packet matches the version of the packet known.
*/
public abstract class ClientboundVersionedPacket extends VersionedPacket implements ClientboundHypixelPacket {
@ApiStatus.Internal
public ClientboundVersionedPacket(int version) {
super(version);
}
@ApiStatus.Internal
public ClientboundVersionedPacket(PacketSerializer serializer) {
super(serializer);
}
/**
* @return true if reading was successful, false if otherwise (such as due to a mismatch in version)