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
The Motd struct represents the protocol version as an u16, but the protocol version (for mcbe at least) is always represented as an i32.
(I don't know why it is a signed integer, lets hope protocol version -42 is planned)
Due to the raknet docs not defining the motd and mojang rather doing their own stuff in this area, this is a bug of consistency.
The text was updated successfully, but these errors were encountered:
A u16 was used here cause theoretically the number only goes up and will never exceed 65535 versions, but I guess we could change this for the sake of consistency.
The Motd struct represents the protocol version as an
u16
, but the protocol version (for mcbe at least) is always represented as ani32
.(I don't know why it is a signed integer, lets hope protocol version
-42
is planned)Due to the raknet docs not defining the motd and mojang rather doing their own stuff in this area, this is a bug of consistency.
The text was updated successfully, but these errors were encountered: