Skip to content

Commit

Permalink
Merge pull request #147 from Nyxane/dev
Browse files Browse the repository at this point in the history
Fixed igneous alloy fluid ID
  • Loading branch information
thevortex authored Feb 6, 2024
2 parents 0785f67 + 9cb3238 commit 852700c
Showing 1 changed file with 2 additions and 50 deletions.
52 changes: 2 additions & 50 deletions kubejs/server_scripts/mods/create/createAdd.js
Original file line number Diff line number Diff line change
Expand Up @@ -890,56 +890,8 @@ let createAdd = (/** @type {Internal.RecipesEventJS} */ event) => {
}
)

event.custom(
{
type: 'create:filling',
ingredients: [
Item.of('tfc:ceramic/ingot_mold').strongNBT(),
{
fluid: 'gregitas_core:igneous_alloy',
nbt: {},
amount: 144
}
],
results: [
{
item: 'tfc:ceramic/ingot_mold',
nbt: {
tank: {
Amount: 144,
FluidName: 'gregitas_core:igneous_alloy'
}
},
count: 1
}
]
}
)
event.custom(
{
type: 'create:filling',
ingredients: [
Item.of('tfc:ceramic/fire_ingot_mold').strongNBT(),
{
fluid: 'gregitas_core:igneous_alloy',
nbt: {},
amount: 144
}
],
results: [
{
item: 'tfc:ceramic/fire_ingot_mold',
nbt: {
tank: {
Amount: 144,
FluidName: 'gregitas_cores:igneous_alloy'
}
},
count: 1
}
]
}
)
event.recipes.woodencog.filling(["tfc:ceramic/ingot_mold"], ['tfc:ceramic/ingot_mold', Fluid.of("gregitas_core:igneous_alloy", 144)]).id("woodencog:advanced_filling/igneous_alloy_to_mold")
event.recipes.woodencog.filling(["tfc:ceramic/fire_ingot_mold"], ['tfc:ceramic/fire_ingot_mold', Fluid.of("gregitas_core:igneous_alloy", 144)]).id("woodencog:advanced_filling/igneous_alloy_to_fire_mold")

tfcCobbleToSand.forEach((type) => {
event.recipes.create.crushing([
Expand Down

0 comments on commit 852700c

Please sign in to comment.