- Changed the weird assembler piston recipe. (#1092)

* - Changed the weird assembler piston recipe.

* - Updated Changelog
This commit is contained in:
Redeix 2025-05-30 02:24:11 -05:00 committed by GitHub
parent df499fc8ff
commit 2bf3746f33
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 4 deletions

View file

@ -2,6 +2,7 @@
## [Unreleased]
### Changes
- Create Steam Engine now also accepts river water and GregTech steam as valid inputs (#947) @Zeropol
- Changed weird assembler piston recipe (#1092) @Redeix
## [0.9.9] - 30.05.2025
### Changes

View file

@ -602,13 +602,13 @@ const registerMinecraftRecipes = (event) => {
//#endregion
//#region Выход: Поршень
//#region Выход: Поршень (Piston)
event.recipes.gtceu.assembler('piston')
.itemInputs('#forge:plates/wrought_iron', '3x tfc:wood/planks/acacia', '4x #tfc:rock/raw')
.itemOutputs('4x minecraft:piston')
.itemInputs(ChemicalHelper.get(TagPrefix.rod, GTMaterials.WroughtIron, 1),ChemicalHelper.get(TagPrefix.gearSmall, GTMaterials.Brass, 1) , '3x #tfc:lumber', '4x #forge:cobblestone')
.itemOutputs('2x minecraft:piston')
.duration(100)
.EUt(16)
.EUt(GTValues.VA[GTValues.LV])
//#endregion