disable steam/combustible/gas generators on other dims?
This commit is contained in:
parent
56879a26be
commit
8eb93b0699
1 changed files with 26 additions and 0 deletions
|
|
@ -2,6 +2,32 @@
|
||||||
|
|
||||||
function registerTFGSpaceRecipes(event) {
|
function registerTFGSpaceRecipes(event) {
|
||||||
|
|
||||||
|
// Change where you can do other recipes
|
||||||
|
|
||||||
|
/*const allowedCombustibleDims = [
|
||||||
|
{
|
||||||
|
dimension: "minecraft:the_nether",
|
||||||
|
type: "dimension"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
dimension: "minecraft:overworld",
|
||||||
|
type: "dimension"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
event.findRecipes({ type: "gtceu:large_boiler" }).forEach(recipe => {
|
||||||
|
recipe.json.add("recipeConditions", allowedCombustibleDims)
|
||||||
|
})
|
||||||
|
event.findRecipes({ type: "gtceu:steam_boiler" }).forEach(recipe => {
|
||||||
|
recipe.json.add("recipeConditions", allowedCombustibleDims)
|
||||||
|
})
|
||||||
|
event.findRecipes({ type: "gtceu:combustion_generator" }).forEach(recipe => {
|
||||||
|
recipe.json.add("recipeConditions", allowedCombustibleDims)
|
||||||
|
})
|
||||||
|
event.findRecipes({ type: "gtceu:gas_turbine" }).forEach(recipe => {
|
||||||
|
recipe.json.add("recipeConditions", allowedCombustibleDims)
|
||||||
|
})*/
|
||||||
|
|
||||||
// Air collector
|
// Air collector
|
||||||
|
|
||||||
event.recipes.gtceu.gas_collector('nether')
|
event.recipes.gtceu.gas_collector('nether')
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue