Related Work Items: #29
This commit is contained in:
Pyritie 2026-01-30 00:49:28 +00:00
parent 0d64c4df4f
commit 438a2349c3
2 changed files with 5 additions and 0 deletions

View file

@ -33,6 +33,7 @@
- Some volcanoes should now have much bigger amounts of lava underneath them, for more lava needs, but also infinite obsidian via the rock breaker has been removed. (Use a fluid solidifier instead) @Pyritie
- Added manual/automated sanding recipes for making smooth stone (#2876) @Pyritie
- Added deployer recipes for all the in-world block modification recipes (#2876) @Pyritie
- Added recipe to convert kaolin clay blocks back into kaolin clay (#2904) @Pyritie
### Bug fixes
- Fixed large miners not outputting crushed ore when mining Migmatite @Pyritie
- Fixed red granite ores never dropping poor or rich raw ores @Pyritie

View file

@ -252,4 +252,8 @@ const registerTFCRecipes = (event) => {
.EUt(2);
event.shapeless('4x tfc:fire_clay', ['tfc:fire_clay_block'])
event.shapeless('4x tfc:kaolin_clay', ['tfc:white_kaolin_clay'])
event.shapeless('4x tfc:kaolin_clay', ['tfc:pink_kaolin_clay'])
event.shapeless('4x tfc:kaolin_clay', ['tfc:red_kaolin_clay'])
}