removed duplicate white flag recipe
This commit is contained in:
parent
604f2080f3
commit
b861df57fc
1 changed files with 9 additions and 7 deletions
|
|
@ -367,13 +367,15 @@ const registerAdAstraRecipes = (event) => {
|
||||||
.category(GTRecipeCategories.CHEM_DYES)
|
.category(GTRecipeCategories.CHEM_DYES)
|
||||||
|
|
||||||
global.MINECRAFT_DYE_NAMES.forEach(color => {
|
global.MINECRAFT_DYE_NAMES.forEach(color => {
|
||||||
event.recipes.gtceu.chemical_bath(`tfg:ad_astra_${color}_flag`)
|
if (color != "white") {
|
||||||
.itemInputs('ad_astra:white_flag')
|
event.recipes.gtceu.chemical_bath(`tfg:ad_astra_${color}_flag`)
|
||||||
.inputFluids(Fluid.of(`tfc:${color}_dye`, 36))
|
.itemInputs('ad_astra:white_flag')
|
||||||
.itemOutputs(`ad_astra:${color}_flag`)
|
.inputFluids(Fluid.of(`tfc:${color}_dye`, 36))
|
||||||
.duration(150)
|
.itemOutputs(`ad_astra:${color}_flag`)
|
||||||
.EUt(4)
|
.duration(150)
|
||||||
.category(GTRecipeCategories.CHEM_DYES)
|
.EUt(4)
|
||||||
|
.category(GTRecipeCategories.CHEM_DYES)
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
//#endregion
|
//#endregion
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue