From 41394126ab8554a9bd78dcebad406e98618b7deb Mon Sep 17 00:00:00 2001 From: joo Date: Thu, 8 Sep 2016 20:25:27 +0100 Subject: [PATCH] Add support for Minecraft pre-release 16w36a (protocol 305). --- minecraft/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/minecraft/__init__.py b/minecraft/__init__.py index 32e9a20..b80249b 100644 --- a/minecraft/__init__.py +++ b/minecraft/__init__.py @@ -25,6 +25,7 @@ SUPPORTED_MINECRAFT_VERSIONS = { '16w32b': 302, '16w33a': 303, '16w35a': 304, + '16w36a': 305, } SUPPORTED_PROTOCOL_VERSIONS = sorted(SUPPORTED_MINECRAFT_VERSIONS.values())