diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-05-08 13:10:55 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-05-08 13:10:55 +0200 |
commit | da85eb9db2a43f37dd6a40739b71b12124a9c918 (patch) | |
tree | b134ec489be3d4b1888ebce2ad08fbd478bfaefc /source/Protocol/ProtocolRecognizer.h | |
parent | ProtoProxy: Added server-ping parsing (diff) | |
download | cuberite-da85eb9db2a43f37dd6a40739b71b12124a9c918.tar cuberite-da85eb9db2a43f37dd6a40739b71b12124a9c918.tar.gz cuberite-da85eb9db2a43f37dd6a40739b71b12124a9c918.tar.bz2 cuberite-da85eb9db2a43f37dd6a40739b71b12124a9c918.tar.lz cuberite-da85eb9db2a43f37dd6a40739b71b12124a9c918.tar.xz cuberite-da85eb9db2a43f37dd6a40739b71b12124a9c918.tar.zst cuberite-da85eb9db2a43f37dd6a40739b71b12124a9c918.zip |
Diffstat (limited to '')
-rw-r--r-- | source/Protocol/ProtocolRecognizer.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source/Protocol/ProtocolRecognizer.h b/source/Protocol/ProtocolRecognizer.h index 1d301394c..768eb64c7 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"
-#define MCS_PROTOCOL_VERSIONS "29, 39, 47, 49, 51, 60"
+#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"
+#define MCS_PROTOCOL_VERSIONS "29, 39, 47, 49, 51, 60, 61"
@@ -39,6 +39,7 @@ public: PROTO_VERSION_1_4_4 = 49,
PROTO_VERSION_1_4_6 = 51,
PROTO_VERSION_1_5_0 = 60,
+ PROTO_VERSION_1_5_2 = 61,
PROTO_VERSION_NEXT,
PROTO_VERSION_LATEST = PROTO_VERSION_NEXT - 1, ///< Automatically assigned to the last protocol version, this serves as the default for PrimaryServerVersion
|