summaryrefslogtreecommitdiffstats
path: root/src/Protocol/ProtocolRecognizer.h
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-04-14 18:52:21 +0200
committermadmaxoft <github@xoft.cz>2014-04-14 18:52:21 +0200
commit0f55dcf036381f951fb22219158182729453f841 (patch)
tree7de5e16f5821b32d4a2394d5028a46891a65efb6 /src/Protocol/ProtocolRecognizer.h
parentProtoProxy: Fixed weird gcc compilation errors. (diff)
downloadcuberite-0f55dcf036381f951fb22219158182729453f841.tar
cuberite-0f55dcf036381f951fb22219158182729453f841.tar.gz
cuberite-0f55dcf036381f951fb22219158182729453f841.tar.bz2
cuberite-0f55dcf036381f951fb22219158182729453f841.tar.lz
cuberite-0f55dcf036381f951fb22219158182729453f841.tar.xz
cuberite-0f55dcf036381f951fb22219158182729453f841.tar.zst
cuberite-0f55dcf036381f951fb22219158182729453f841.zip
Diffstat (limited to '')
-rw-r--r--src/Protocol/ProtocolRecognizer.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Protocol/ProtocolRecognizer.h b/src/Protocol/ProtocolRecognizer.h
index 072d7c2d2..e53fc9514 100644
--- a/src/Protocol/ProtocolRecognizer.h
+++ b/src/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, 1.6.3, 1.6.4, 1.7.2, 1.7.4"
-#define MCS_PROTOCOL_VERSIONS "29, 39, 47, 49, 51, 60, 61, 73, 74, 77, 78, 4"
+#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, 1.7.2, 1.7.4, 1.7.5, 1.7.6, 1.7.7, 1.7.8, 1.7.9"
+#define MCS_PROTOCOL_VERSIONS "29, 39, 47, 49, 51, 60, 61, 73, 74, 77, 78, 4, 5"
@@ -50,6 +50,7 @@ public:
// These will be kept "under" the next / latest, because the next and latest are only needed for previous protocols
PROTO_VERSION_1_7_2 = 4,
+ PROTO_VERSION_1_7_6 = 5,
} ;
cProtocolRecognizer(cClientHandle * a_Client);