фиксы

This commit is contained in:
Dmitry 2023-12-31 19:39:04 +07:00
parent 1645ee2a72
commit 993d16b2a6
2 changed files with 33 additions and 8 deletions

View file

@ -1,7 +1,6 @@
// priority: 1
REIEvents.hide('item', event => {
/*
hideMinecraftStuff(event)
hideTFCStuff(event)
hideFirmaLifeStuff(event)
@ -12,8 +11,7 @@ REIEvents.hide('item', event => {
hideSophisticatedBackpacksStuff(event)
hideMoreRedStuff(event)
hideRailWaysStuff(event)
hideCreateAdditionsStuff(event)*/
hideCreateAdditionsStuff(event)
})
REIEvents.groupEntries(event => {

View file

@ -2423,18 +2423,45 @@ const registerMinecraftRecipes = (event) => {
event.remove({ id: `minecraft:dye_${dye}_wool` })
event.shapeless(`minecraft:${dye}_wool`, [
'minecraft:white_wool',
`#forge:dyes/${dye}`
]).id(`tfg:create/shapeless/${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`)
.itemInputs(`minecraft:white_carpet`)
.inputFluids(Fluid.of(`gtceu:${dye}_dye`, 72))
.itemOutputs(`minecraft:${dye}_carpet`)
.duration(300)
.EUt(4)
}
})
//#endregion