mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
Raft: Small website/code touchups (#1866)
* Remove unnecessary Set * Ocean theme * Use create_items instead of generate_basic
This commit is contained in:
@@ -13,15 +13,12 @@ with open(os.path.join(os.path.dirname(__file__), 'resourcepacks.json'), 'r') as
|
||||
|
||||
lookup_id_to_name = {}
|
||||
lookup_name_to_item = {}
|
||||
advancement_item_names = set()
|
||||
|
||||
lastItemId = -1
|
||||
for item in item_table:
|
||||
item_name = item["name"]
|
||||
lookup_id_to_name[item["id"]] = item_name
|
||||
lookup_name_to_item[item_name] = item
|
||||
if item["progression"]:
|
||||
advancement_item_names.add(item_name)
|
||||
lastItemId = max(lastItemId, item["id"])
|
||||
|
||||
progressive_item_list = {}
|
||||
|
Reference in New Issue
Block a user