diff options
author | madmaxoft <github@xoft.cz> | 2013-09-19 20:49:09 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-09-19 20:49:09 +0200 |
commit | 111fd58914854bdb93c9e72566a689cfd484c0c3 (patch) | |
tree | 5bc172b2a09b1c6d8907e1a0bbc722816072a83c /source/Protocol/ProtocolRecognizer.h | |
parent | APIDump: Automatic corrections. (diff) | |
download | cuberite-111fd58914854bdb93c9e72566a689cfd484c0c3.tar cuberite-111fd58914854bdb93c9e72566a689cfd484c0c3.tar.gz cuberite-111fd58914854bdb93c9e72566a689cfd484c0c3.tar.bz2 cuberite-111fd58914854bdb93c9e72566a689cfd484c0c3.tar.lz cuberite-111fd58914854bdb93c9e72566a689cfd484c0c3.tar.xz cuberite-111fd58914854bdb93c9e72566a689cfd484c0c3.tar.zst cuberite-111fd58914854bdb93c9e72566a689cfd484c0c3.zip |
Diffstat (limited to '')
-rw-r--r-- | source/Protocol/ProtocolRecognizer.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/source/Protocol/ProtocolRecognizer.h b/source/Protocol/ProtocolRecognizer.h index 2178d5e61..c53288230 100644 --- a/source/Protocol/ProtocolRecognizer.h +++ b/source/Protocol/ProtocolRecognizer.h @@ -18,8 +18,8 @@ // Adjust these if a new protocol is added or an old one is removed: -#define MCS_CLIENT_VERSIONS "1.2.4, 1.2.5, 1.3.1, 1.3.2, 1.4.2, 1.4.4, 1.4.5, 1.4.6, 1.4.7, 1.5, 1.5.1, 1.5.2, 1.6.1, 1.6.2" -#define MCS_PROTOCOL_VERSIONS "29, 39, 47, 49, 51, 60, 61, 73, 74" +#define MCS_CLIENT_VERSIONS "1.2.4, 1.2.5, 1.3.1, 1.3.2, 1.4.2, 1.4.4, 1.4.5, 1.4.6, 1.4.7, 1.5, 1.5.1, 1.5.2, 1.6.1, 1.6.2, 1.6.3, 1.6.4" +#define MCS_PROTOCOL_VERSIONS "29, 39, 47, 49, 51, 60, 61, 73, 74, 77, 78" @@ -42,6 +42,8 @@ public: PROTO_VERSION_1_5_2 = 61, PROTO_VERSION_1_6_1 = 73, PROTO_VERSION_1_6_2 = 74, + PROTO_VERSION_1_6_3 = 77, + PROTO_VERSION_1_6_4 = 78, PROTO_VERSION_NEXT, PROTO_VERSION_LATEST = PROTO_VERSION_NEXT - 1, ///< Automatically assigned to the last protocol version, this serves as the default for PrimaryServerVersion |