I am playing Bob's mods playthrough with Earendel's Jetpack mod. I am currently running my factory on "Enriched fuel block" as a source of fuel, instead of solid fuel (which works fine in Jetpack). But Jetpack doesn't accept this fuel, would it be possible to add compatibility?
I already reported this to Earendel's Discord, and they said that it needs to be implemented by Bob's mod:
-- To add your own custom fuels, have your mod implement a "jetpack_fuels" interface, which the Jetpack mod will call (in jetpack.lua).
-- Example:
-- remote.add_interface("your-mod", {
-- jetpack_fuels = function() return {["slow-fuel"] = 0.5, ["fast-fuel"] = 1.1} end
-- })