diff options
author | Tiger Wang <ziwei.tiger@outlook.com> | 2018-08-01 01:21:44 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2019-09-16 15:37:54 +0200 |
commit | 77731f80fb89182e8697d9daad6c8400e480fb6d (patch) | |
tree | c4b7131f8a51e74d1f6c5e7e7f6b1602e39e80c8 /src/Protocol/ProtocolRecognizer.h | |
parent | GCC: Added pragma to ignore fallthrough warnings within Unicode Inc. code (#4392) (diff) | |
download | cuberite-77731f80fb89182e8697d9daad6c8400e480fb6d.tar cuberite-77731f80fb89182e8697d9daad6c8400e480fb6d.tar.gz cuberite-77731f80fb89182e8697d9daad6c8400e480fb6d.tar.bz2 cuberite-77731f80fb89182e8697d9daad6c8400e480fb6d.tar.lz cuberite-77731f80fb89182e8697d9daad6c8400e480fb6d.tar.xz cuberite-77731f80fb89182e8697d9daad6c8400e480fb6d.tar.zst cuberite-77731f80fb89182e8697d9daad6c8400e480fb6d.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Protocol/ProtocolRecognizer.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/Protocol/ProtocolRecognizer.h b/src/Protocol/ProtocolRecognizer.h index 59cdfa6de..185793f55 100644 --- a/src/Protocol/ProtocolRecognizer.h +++ b/src/Protocol/ProtocolRecognizer.h @@ -18,9 +18,9 @@ // Adjust these if a new protocol is added or an old one is removed: -#define MCS_CLIENT_VERSIONS "1.8.x, 1.9.x, 1.10.x, 1.11.x, 1.12.x" -#define MCS_PROTOCOL_VERSIONS "47, 107, 108, 109, 110, 210, 315, 316, 335, 338, 340" -#define MCS_LATEST_PROTOCOL_VERSION 340 +#define MCS_CLIENT_VERSIONS "1.8.x, 1.9.x, 1.10.x, 1.11.x, 1.12.x, 1.13" +#define MCS_PROTOCOL_VERSIONS "47, 107, 108, 109, 110, 210, 315, 316, 335, 338, 340, 393" +#define MCS_LATEST_PROTOCOL_VERSION 393 @@ -45,6 +45,7 @@ public: PROTO_VERSION_1_12 = 335, PROTO_VERSION_1_12_1 = 338, PROTO_VERSION_1_12_2 = 340, + PROTO_VERSION_1_13 = 393 }; cProtocolRecognizer(cClientHandle * a_Client); |