From 252e60a6e2a3a8fb974779c4bce55530b62a8805 Mon Sep 17 00:00:00 2001 From: joo Date: Wed, 2 Dec 2020 16:27:28 +0100 Subject: [PATCH] Add support for Minecraft 20w45a to 20w48a (protocol 2^30+5 to 2^30+7). --- minecraft/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/minecraft/__init__.py b/minecraft/__init__.py index d834d4a..cfe0385 100644 --- a/minecraft/__init__.py +++ b/minecraft/__init__.py @@ -457,9 +457,9 @@ KNOWN_MINECRAFT_VERSION_RECORDS = [ Version('1.16.4-pre2', PRE | 2, True), Version('1.16.4-rc1', PRE | 3, True), Version('1.16.4', 754, True), - Version('20w45a', PRE | 5, False), - Version('20w46a', PRE | 6, False), - Version('20w48a', PRE | 7, False), + Version('20w45a', PRE | 5, True), + Version('20w46a', PRE | 6, True), + Version('20w48a', PRE | 7, True), ] # An OrderedDict mapping the id string of each known Minecraft version to its