some fixes
This commit is contained in:
parent
48acbe2f52
commit
17c9d76220
3 changed files with 34 additions and 78 deletions
|
|
@ -2414,29 +2414,6 @@ const registerMinecraftRecipes = (event) => {
|
|||
|
||||
//#endregion
|
||||
|
||||
//#region Выход: Бетон
|
||||
|
||||
/*
|
||||
global.MINECRAFT_DYE_NAMES.forEach(dye => {
|
||||
|
||||
event.recipes.gtceu.chemical_bath(`${dye}_powder_to_${dye}_concrete`)
|
||||
.itemInputs(`minecraft:${dye}_concrete_powder`)
|
||||
.inputFluids(Fluid.of('minecraft:water', 144))
|
||||
.itemOutputs(`minecraft:${dye}_concrete`)
|
||||
.duration(100)
|
||||
.EUt(4)
|
||||
|
||||
if (dye != "white")
|
||||
event.recipes.gtceu.chemical_bath(`${dye}_concrete`)
|
||||
.itemInputs(`minecraft:white_concrete`)
|
||||
.inputFluids(Fluid.of(`gtceu:${dye}_dye`, 72))
|
||||
.itemOutputs(`minecraft:${dye}_concrete`)
|
||||
.duration(300)
|
||||
.EUt(4)
|
||||
})*/
|
||||
|
||||
//#endregion
|
||||
|
||||
//#region Выход: Шерсть
|
||||
|
||||
event.recipes.gtceu.assembler('wool_from_string')
|
||||
|
|
@ -2446,52 +2423,30 @@ const registerMinecraftRecipes = (event) => {
|
|||
.duration(100)
|
||||
.EUt(4)
|
||||
|
||||
/*
|
||||
|
||||
global.MINECRAFT_DYE_NAMES.forEach(dye => {
|
||||
|
||||
event.remove({ id: `minecraft:dye_${dye}_wool` })
|
||||
|
||||
if (dye != 'white')
|
||||
{
|
||||
event.shapeless(`minecraft:${dye}_wool`, [
|
||||
'minecraft:white_wool',
|
||||
`#forge:dyes/${dye}`
|
||||
]).id(`tfg:create/shapeless/${dye}_wool`)
|
||||
|
||||
event.recipes.gtceu.chemical_bath(`${dye}_wool`)
|
||||
.itemInputs(`minecraft:white_wool`)
|
||||
.inputFluids(Fluid.of(`gtceu:${dye}_dye`, 72))
|
||||
.itemOutputs(`minecraft:${dye}_wool`)
|
||||
.duration(300)
|
||||
.EUt(4)
|
||||
}
|
||||
|
||||
})*/
|
||||
})
|
||||
|
||||
//#endregion
|
||||
|
||||
//#region Выход: Ковры
|
||||
|
||||
/*
|
||||
|
||||
global.MINECRAFT_DYE_NAMES.forEach(dye => {
|
||||
|
||||
event.remove({ id: `minecraft:dye_${dye}_carpet` })
|
||||
|
||||
if (dye != 'white')
|
||||
{
|
||||
event.shapeless(`minecraft:${dye}_carpet`, [
|
||||
'minecraft:white_carpet',
|
||||
`#forge:dyes/${dye}`
|
||||
]).id(`tfg:create/shapeless/${dye}_carpet`)
|
||||
|
||||
event.recipes.gtceu.chemical_bath(`${dye}_carpet`)
|
||||
event.recipes.gtceu.chemical_bath(`tfg:${dye}_carpet`)
|
||||
.itemInputs(`minecraft:white_carpet`)
|
||||
.inputFluids(Fluid.of(`gtceu:${dye}_dye`, 72))
|
||||
.itemOutputs(`minecraft:${dye}_carpet`)
|
||||
.duration(300)
|
||||
.EUt(4)
|
||||
}
|
||||
})*/
|
||||
})
|
||||
|
||||
//#endregion
|
||||
|
||||
|
|
@ -2505,7 +2460,7 @@ const registerMinecraftRecipes = (event) => {
|
|||
.EUt(4)
|
||||
|
||||
global.MINECRAFT_DYE_NAMES.forEach(dye => {
|
||||
event.remove({ id: `minecraft:dye_${dye}_bed` })
|
||||
event.remove({ id: `minecraft:${dye}_bed` })
|
||||
|
||||
if (dye != "white")
|
||||
event.recipes.gtceu.chemical_bath(`${dye}_bed`)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue