From 3627d8f1ae3e25821f9652174e7cdaac50d7e874 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Wed, 4 Aug 2021 16:01:08 +0200 Subject: [PATCH] DataPackage: remove legacy format --- worlds/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/worlds/__init__.py b/worlds/__init__.py index 4760a3c6..a020ff40 100644 --- a/worlds/__init__.py +++ b/worlds/__init__.py @@ -27,8 +27,6 @@ for world_name, world in AutoWorldRegister.world_types.items(): lookup_any_location_id_to_name.update(world.location_id_to_name) network_data_package = { - "lookup_any_location_id_to_name": lookup_any_location_id_to_name, # legacy, to be removed - "lookup_any_item_id_to_name": lookup_any_item_id_to_name, # legacy, to be removed "version": sum(world.data_version for world in AutoWorldRegister.world_types.values()), "games": games, }