diff options
author | bibo38 <bibo38@users.noreply.github.com> | 2016-09-02 19:22:06 +0200 |
---|---|---|
committer | LogicParrot <LogicParrot@users.noreply.github.com> | 2016-09-02 19:22:06 +0200 |
commit | 61078e8402dc289cca0ace12933a688660d10b03 (patch) | |
tree | 9fa0cb5e8037f06f24981e45f6ddac2b60554fcc /src/Protocol/ProtocolRecognizer.h | |
parent | Remove settings.ini world migration code (#3360) (diff) | |
download | cuberite-61078e8402dc289cca0ace12933a688660d10b03.tar cuberite-61078e8402dc289cca0ace12933a688660d10b03.tar.gz cuberite-61078e8402dc289cca0ace12933a688660d10b03.tar.bz2 cuberite-61078e8402dc289cca0ace12933a688660d10b03.tar.lz cuberite-61078e8402dc289cca0ace12933a688660d10b03.tar.xz cuberite-61078e8402dc289cca0ace12933a688660d10b03.tar.zst cuberite-61078e8402dc289cca0ace12933a688660d10b03.zip |
Diffstat (limited to 'src/Protocol/ProtocolRecognizer.h')
-rw-r--r-- | src/Protocol/ProtocolRecognizer.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/Protocol/ProtocolRecognizer.h b/src/Protocol/ProtocolRecognizer.h index 5f0fa2dcb..6390b6289 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.8.x, 1.9.x" -#define MCS_PROTOCOL_VERSIONS "47, 107, 108, 109, 110" +#define MCS_CLIENT_VERSIONS "1.8.x, 1.9.x, 1.10.x" +#define MCS_PROTOCOL_VERSIONS "47, 107, 108, 109, 110, 210" @@ -33,11 +33,12 @@ class cProtocolRecognizer : public: enum { - PROTO_VERSION_1_8_0 = 47, - PROTO_VERSION_1_9_0 = 107, - PROTO_VERSION_1_9_1 = 108, - PROTO_VERSION_1_9_2 = 109, - PROTO_VERSION_1_9_4 = 110, + PROTO_VERSION_1_8_0 = 47, + PROTO_VERSION_1_9_0 = 107, + PROTO_VERSION_1_9_1 = 108, + PROTO_VERSION_1_9_2 = 109, + PROTO_VERSION_1_9_4 = 110, + PROTO_VERSION_1_10_0 = 210, } ; cProtocolRecognizer(cClientHandle * a_Client); |