1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2024-06-26 07:03:22 +00:00

Add compostors to the list of usable blocks

Fixes #1638
This commit is contained in:
Jonathan Coates 2023-11-22 18:24:59 +00:00
parent 84a799d27a
commit 2043939531
No known key found for this signature in database
GPG Key ID: B9E431FF07C98D06
3 changed files with 6 additions and 3 deletions

View File

@ -58,7 +58,10 @@ public static void blockTags(TagConsumer<Block> tags) {
tags.tag(ComputerCraftTags.Blocks.TURTLE_SWORD_BREAKABLE).addTag(BlockTags.WOOL).add(Blocks.COBWEB);
tags.tag(ComputerCraftTags.Blocks.TURTLE_CAN_USE).addTag(BlockTags.CAULDRONS).addTag(BlockTags.BEEHIVES);
tags.tag(ComputerCraftTags.Blocks.TURTLE_CAN_USE)
.addTag(BlockTags.BEEHIVES)
.addTag(BlockTags.CAULDRONS)
.add(Blocks.COMPOSTER);
// Make all blocks aside from command computer mineable.
tags.tag(BlockTags.MINEABLE_WITH_PICKAXE).add(

View File

@ -1 +1 @@
{"replace": false, "values": ["#minecraft:cauldrons", "#minecraft:beehives"]}
{"replace": false, "values": ["#minecraft:beehives", "#minecraft:cauldrons", "minecraft:composter"]}

View File

@ -1 +1 @@
{"values": ["#minecraft:cauldrons", "#minecraft:beehives"]}
{"values": ["#minecraft:beehives", "#minecraft:cauldrons", "minecraft:composter"]}