Tag version required for sending items out of shops

This commit is contained in:
Fabian Dill 2021-01-09 18:11:24 +01:00
parent 857e9f4dcd
commit 2a0d1962f1
2 changed files with 9 additions and 5 deletions

View File

@ -444,7 +444,11 @@ def main(args, seed=None):
multidatatags.append("Spoiler") multidatatags.append("Spoiler")
if not args.skip_playthrough: if not args.skip_playthrough:
multidatatags.append("Play through") multidatatags.append("Play through")
minimum_versions = {"server": (1,0,0)} minimum_versions = {"server": (1, 0, 0)}
minimum_versions["clients"] = client_versions = []
for (slot, team, name) in rom_names:
if world.shop_shuffle_slots[slot]:
client_versions.append([team, slot, [3, 6, 1]])
multidata = zlib.compress(json.dumps({"names": parsed_names, multidata = zlib.compress(json.dumps({"names": parsed_names,
# backwards compat for < 2.4.1 # backwards compat for < 2.4.1
"roms": [(slot, team, list(name.encode())) "roms": [(slot, team, list(name.encode()))

View File

@ -13,7 +13,7 @@ class Version(typing.NamedTuple):
micro: int micro: int
__version__ = "3.6.0" __version__ = "3.6.1"
_version_tuple = tuplize_version(__version__) _version_tuple = tuplize_version(__version__)
import os import os