Tag version required for sending items out of shops
This commit is contained in:
parent
857e9f4dcd
commit
2a0d1962f1
4
Main.py
4
Main.py
|
@ -445,6 +445,10 @@ def main(args, seed=None):
|
|||
if not args.skip_playthrough:
|
||||
multidatatags.append("Play through")
|
||||
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,
|
||||
# backwards compat for < 2.4.1
|
||||
"roms": [(slot, team, list(name.encode()))
|
||||
|
|
Loading…
Reference in New Issue