Documentation: now in repository. Programming documentation should be in /docs, player/user documentation should be in /WebHostLib/static/assets/tutorial.

Network: implement InvalidPacket, remove InvalidArguments and InvalidCmd
Datapackage: implement per-game versions and per-game package retrieval
This commit is contained in:
Fabian Dill
2021-07-14 10:02:39 +02:00
parent 62a6cdc9f7
commit 4f998a6880
6 changed files with 886 additions and 9 deletions

View File

@@ -29,7 +29,7 @@ for world_name, world in AutoWorldRegister.world_types.items():
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": 10, # legacy, to be removed
"version": sum(world.data_version for world in AutoWorldRegister.world_types.values()),
"games": games,
}