diff options
author | peterbell10 <peterbell10@live.co.uk> | 2017-09-21 15:12:43 +0200 |
---|---|---|
committer | Alexander Harkness <me@bearbin.net> | 2017-09-21 15:12:43 +0200 |
commit | e883aa828c304600fcd707b50df9515011311db8 (patch) | |
tree | d2a14af47bf001df1fb2705278fad8a75682f883 /src/Protocol/ProtocolRecognizer.h | |
parent | Only allow snow to be placed where valid. Fixes #2920. (diff) | |
download | cuberite-e883aa828c304600fcd707b50df9515011311db8.tar cuberite-e883aa828c304600fcd707b50df9515011311db8.tar.gz cuberite-e883aa828c304600fcd707b50df9515011311db8.tar.bz2 cuberite-e883aa828c304600fcd707b50df9515011311db8.tar.lz cuberite-e883aa828c304600fcd707b50df9515011311db8.tar.xz cuberite-e883aa828c304600fcd707b50df9515011311db8.tar.zst cuberite-e883aa828c304600fcd707b50df9515011311db8.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 6d75b0f2e..a29daad94 100644 --- a/src/Protocol/ProtocolRecognizer.h +++ b/src/Protocol/ProtocolRecognizer.h @@ -19,8 +19,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, 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 +#define MCS_PROTOCOL_VERSIONS "47, 107, 108, 109, 110, 210, 315, 316, 335, 338, 340" +#define MCS_LATEST_PROTOCOL_VERSION 340 @@ -44,7 +44,8 @@ public: PROTO_VERSION_1_11_1 = 316, PROTO_VERSION_1_12 = 335, PROTO_VERSION_1_12_1 = 338, - } ; + PROTO_VERSION_1_12_2 = 340, + }; cProtocolRecognizer(cClientHandle * a_Client); virtual ~cProtocolRecognizer() override; |