Use shovels, land in water

This commit is contained in:
2020-12-02 11:12:51 +00:00
parent 00846538e8
commit 6ba9288fd7
7 changed files with 36 additions and 3 deletions
+13
View File
@@ -22,6 +22,15 @@ BEDS = [
'black_bed',
]
SHOVELS = [
'wooden_shovel',
'stone_shovel',
'golden_shovel',
'iron_shovel',
'diamond_shovel',
'netherite_shovel',
]
SAPLINGS = [
'oak_sapling',
'spruce_sapling',
@@ -35,6 +44,10 @@ BED_IDS = set()
for item_name in BEDS:
BED_IDS.add(ITEMS['minecraft:'+item_name]['protocol_id'])
SHOVEL_IDS = set()
for item_name in SHOVELS:
SHOVEL_IDS.add(ITEMS['minecraft:'+item_name]['protocol_id'])
SAPLING_IDS = set()
for item_name in SAPLINGS:
SAPLING_IDS.add(ITEMS['minecraft:'+item_name]['protocol_id'])