mirror of
https://github.com/283375/arcaea-offline.git
synced 2025-04-21 06:50:18 +00:00
fix: add static single
pack in PacklistParser
This commit is contained in:
parent
6b8a3e1565
commit
35e6fde664
@ -14,7 +14,9 @@ class PacklistParser(ArcaeaParser):
|
|||||||
packlist_json_root = json.loads(pl_f.read())
|
packlist_json_root = json.loads(pl_f.read())
|
||||||
|
|
||||||
packlist_json = packlist_json_root["packs"]
|
packlist_json = packlist_json_root["packs"]
|
||||||
results = []
|
results: List[Union[Pack, PackLocalized]] = [
|
||||||
|
Pack(id="single", name="Memory Archive")
|
||||||
|
]
|
||||||
for item in packlist_json:
|
for item in packlist_json:
|
||||||
pack = Pack()
|
pack = Pack()
|
||||||
pack.id = item["id"]
|
pack.id = item["id"]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user