Prevent use of old collection clients without boss collection blocklist. (#406)

This commit is contained in:
CaitSith2
2022-04-03 11:45:06 -07:00
committed by GitHub
parent d1f0a29a02
commit 05e267a0bd

View File

@@ -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])