summaryrefslogtreecommitdiffstats
path: root/src/Protocol/ProtocolRecognizer.h
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2017-08-17 16:25:53 +0200
committerMattes D <github@xoft.cz>2017-08-17 16:25:53 +0200
commit238f5bb3389036e919e427510f8fc8f1825c13e5 (patch)
tree6298f83c7d563496e44caa02fc2704ee7c7f9804 /src/Protocol/ProtocolRecognizer.h
parentChanged int parameters to vector parameters in cCuboid and simulators (#3874) (diff)
downloadcuberite-238f5bb3389036e919e427510f8fc8f1825c13e5.tar
cuberite-238f5bb3389036e919e427510f8fc8f1825c13e5.tar.gz
cuberite-238f5bb3389036e919e427510f8fc8f1825c13e5.tar.bz2
cuberite-238f5bb3389036e919e427510f8fc8f1825c13e5.tar.lz
cuberite-238f5bb3389036e919e427510f8fc8f1825c13e5.tar.xz
cuberite-238f5bb3389036e919e427510f8fc8f1825c13e5.tar.zst
cuberite-238f5bb3389036e919e427510f8fc8f1825c13e5.zip
Diffstat (limited to 'src/Protocol/ProtocolRecognizer.h')
-rw-r--r--src/Protocol/ProtocolRecognizer.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/Protocol/ProtocolRecognizer.h b/src/Protocol/ProtocolRecognizer.h
index 32dcca940..4c338a5b8 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"
-#define MCS_PROTOCOL_VERSIONS "47, 107, 108, 109, 110, 210, 315, 316, 335"
-#define MCS_LATEST_PROTOCOL_VERSION 335
+#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"
+#define MCS_LATEST_PROTOCOL_VERSION 338
@@ -43,6 +43,7 @@ public:
PROTO_VERSION_1_11_0 = 315,
PROTO_VERSION_1_11_1 = 316,
PROTO_VERSION_1_12 = 335,
+ PROTO_VERSION_1_12_1 = 338,
} ;
cProtocolRecognizer(cClientHandle * a_Client);