Add a job to find enchanted golden apples
This commit is contained in:
@@ -214,6 +214,10 @@ LEAVES = [
|
||||
'dark_oak_leaves',
|
||||
]
|
||||
|
||||
CHESTS = [
|
||||
'chest',
|
||||
]
|
||||
|
||||
INDEXED = [
|
||||
'chest',
|
||||
]
|
||||
@@ -239,6 +243,11 @@ for block_name in LEAVES:
|
||||
for state in JSON_BLOCKS['minecraft:' + block_name]['states']:
|
||||
LEAF_IDS.add(state['id'])
|
||||
|
||||
CHEST_IDS = set()
|
||||
for block_name in CHESTS:
|
||||
for state in JSON_BLOCKS['minecraft:' + block_name]['states']:
|
||||
CHEST_IDS.add(state['id'])
|
||||
|
||||
INDEXED_IDS = set()
|
||||
for block_name in INDEXED:
|
||||
for state in JSON_BLOCKS['minecraft:' + block_name]['states']:
|
||||
|
||||
Reference in New Issue
Block a user