Add support for Minecraft pre-release 16w32b (protocol 302).

This commit is contained in:
joo 2016-08-14 04:38:49 +01:00
parent b8330a17fd
commit 8268f91009

View File

@ -22,6 +22,7 @@ SUPPORTED_MINECRAFT_VERSIONS = {
'1.9.4': 110, '1.9.4': 110,
'1.10': 210, '1.10': 210,
'16w32a': 301, '16w32a': 301,
'16w32b': 302,
} }
SUPPORTED_PROTOCOL_VERSIONS = sorted(SUPPORTED_MINECRAFT_VERSIONS.values()) SUPPORTED_PROTOCOL_VERSIONS = sorted(SUPPORTED_MINECRAFT_VERSIONS.values())