This commit is contained in:
Pyritie
2026-02-21 16:28:54 +00:00
parent f950a74cc1
commit 722aad87b1
2 changed files with 7 additions and 13 deletions

View File

@@ -15,10 +15,13 @@
- Improved performance of blocks checking if they're oxygenated @Mqrius
- Added Bamboo Lumber and unified wood-related recipes in the backend (please let us know if anything's wrong!) (#3002) @Inceitious
- Added a recipe to convert iodine and methane back into iodomethane (#3129) @Pyritie
- MV Machine Hulls shaped recipe needs 4 Bakelite Plates and 2 Aluminum Plates but can be crafted with Bakelite in an Assembler @TomPlop
- MV Hatches and Buses now can be crafted with Bakelite @TomPlop
### Bug fixes
- Uraninium Triplatinium Alloy Blast Smelter recipe now requires Radon too
- Fixed Uranium Triplatinum not requiring Radon in the Alloy Blast Smelter @TomPlop
- Added a workaround for oil spouts sometimes giving a fluid that couldn't be used in non-GregTech machines @Pyritie
- Fixed an issue with server overrides sometimes not applying to server pack exports (#3088) @Mqrius
- Fixed more startup issues when the system language is set to Turkish (#3099) @Pyritie
- Fixed a crash when using a schematicannon to place a chain conveyor (#3092) @Pyritie
- Fixed not being able to recycle fire bricks (#3135) @Pyritie
### Translation updates
- Chinese (simplified) @jmecn
- German @Enderderschander

View File

@@ -13,15 +13,6 @@ const registerTFCBetterBFRecipes = (event) => {
TFGHelpers.registerMaterialInfo('tfcbetterbf:insulation', [GTMaterials.WroughtIron, 3])
event.recipes.tfc.heating('tfcbetterbf:insulated_fire_bricks', 1535)
.resultFluid(Fluid.of('gtceu:iron', 432))
.id(`tfcbetterbf:heating/insulated_fire_bricks`)
TFGHelpers.registerMaterialInfo('tfc:fire_bricks', [GTMaterials.get('tfg:refractory_clay'), 5])
TFGHelpers.registerMaterialInfo('tfcbetterbf:insulated_fire_bricks', [GTMaterials.get('tfg:refractory_clay'), 5, GTMaterials.WroughtIron, 3])
event.recipes.gtceu.packer('tfcbetterbf:insulated_fire_bricks')
.itemInputs('tfcbetterbf:insulated_fire_bricks')
.itemOutputs('tfc:fire_bricks', '3x tfcbetterbf:insulation')
.duration(20)
.EUt(2)
}