From 05e267a0bddeab339437627acf3f147b589f215e Mon Sep 17 00:00:00 2001 From: CaitSith2 Date: Sun, 3 Apr 2022 11:45:06 -0700 Subject: [PATCH] Prevent use of old collection clients without boss collection blocklist. (#406) --- worlds/alttp/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/alttp/__init__.py b/worlds/alttp/__init__.py index 512e0c12..ea6833aa 100644 --- a/worlds/alttp/__init__.py +++ b/worlds/alttp/__init__.py @@ -324,7 +324,7 @@ class ALTTPWorld(World): multidata["connect_names"][new_name] = multidata["connect_names"][self.world.player_name[self.player]] def get_required_client_version(self) -> tuple: - return max((0, 2, 6), super(ALTTPWorld, self).get_required_client_version()) + return max((0, 3, 1), super(ALTTPWorld, self).get_required_client_version()) def create_item(self, name: str) -> Item: return ALttPItem(name, self.player, **as_dict_item_table[name])