Skip to main content

OnFuelItemCheck

Usage​

  • Called when determining which item should be used to fuel a vehicle
  • Returning an Item overrides default behavior

Examples​

""
Item? OnFuelItemCheck(EntityFuelSystem fuelSystem, StorageContainer fuelContainer)
{
Puts("OnFuelItemCheck works!");
return null;
}