From bc7389fbaa725344fbcaa7f0c818e2804633302f Mon Sep 17 00:00:00 2001 From: CaitSith2 Date: Tue, 14 Mar 2023 13:46:24 -0700 Subject: [PATCH] Add a todo regarding backwards compatibility --- MultiServer.py | 1 + 1 file changed, 1 insertion(+) diff --git a/MultiServer.py b/MultiServer.py index 40b6582dca..fa156bfc86 100644 --- a/MultiServer.py +++ b/MultiServer.py @@ -392,6 +392,7 @@ class Context: self.games = {slot: slot_info.game for slot, slot_info in self.slot_info.items()} self.groups = {slot: slot_info.group_members for slot, slot_info in self.slot_info.items() if slot_info.type == SlotType.group} + # TODO: around 0.4.2 or so, remove the if/else backwards compatibility check. self.allow_collect = {slot: slot_info.allow_collect if type(slot_info.allow_collect) is bool else True for slot, slot_info in self.slot_info.items()}