added recipe for bone meal to white dye #1757

This commit is contained in:
Pyritie
2025-09-08 16:08:48 +01:00
parent f1b9d9fb2b
commit 91cd35e91a
2 changed files with 4 additions and 2 deletions

View File

@@ -20,6 +20,7 @@
- Automatic backups now happen hourly instead of daily (#1705) @Pyritie @Xikaro
- Advanced Peripherals' Redstone Integrator has been deprecated in favour of ComputerCraft's Redstone Relay (#1737) @Pyritie
- Speed up recipes for turning blocks into sand (#1720) @TomPlop
- Added a recipe for turning bone meal into white dye (#1757) @Pyritie
### Bug fixes
- Fixed tongs getting stuck in ovens, and now you can use them the same way you'd previously use a Peel @Pyritie
- Allowed powders, gears, plates, double plates, springs, and small springs to be heated (#1727) @Redeix

View File

@@ -85,9 +85,10 @@ const registerMinecraftItemTags = (event) => {
event.add('tfc:compost_greens', 'minecraft:nether_wart_block')
event.add('tfc:compost_greens', 'minecraft:warped_wart_block')
event.add('forge:dyes/black', 'minecraft:ink_sac')
event.add('tfc:hematitic_sand', 'minecraft:red_sand')
event.add('tfc:makes_black_dye', 'minecraft:ink_sac')
event.add('tfc:makes_white_dye', 'minecraft:bone_meal')
}
const registerMinecraftBlockTags = (event) => {