Fuel

Use the fuel requirement in a KubeJS recipe

Use one of these methods to add a Fuel Requirement to the recipe.

.requireFuel()
.requireFuel(amount)
  • The amount param must be a positive integer that define the amount of fuel burned each tick of the recipe processing. Default to 1 when not specified.

Example

ServerEvents.recipes(event => {

  event.recipes.custommachinery.custom_machine("custommachinery:power_crusher", 100)
  .requireFuel()
  
})

Last updated