From 9ecd320c8c16cb4a8568d19e97596b5e2a7d8d81 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Sun, 24 Apr 2022 04:59:46 +0200 Subject: [PATCH] OoT: prevent connection from outdated clients --- worlds/oot/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/worlds/oot/__init__.py b/worlds/oot/__init__.py index 9898f4b1..18b0f939 100644 --- a/worlds/oot/__init__.py +++ b/worlds/oot/__init__.py @@ -83,6 +83,8 @@ class OOTWorld(World): data_version = 1 + required_client_version = (0, 3, 2) + def __init__(self, world, player): self.hint_data_available = threading.Event() super(OOTWorld, self).__init__(world, player)