mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2025-01-12 11:37:31 +01:00
Add mcl_util.is_fuel
This commit is contained in:
parent
93cbabc61e
commit
649fca5aff
@ -188,3 +188,9 @@ function mcl_util.get_first_occupied_inventory_slot(inventory, listname)
|
||||
end
|
||||
return nil
|
||||
end
|
||||
|
||||
-- Returns true if item (itemstring or ItemStack) can be used as a furnace fuel.
|
||||
-- Returns false otherwise
|
||||
function mcl_util.is_fuel(item)
|
||||
return minetest.get_craft_result({method="fuel", width=1, items={item}}).time ~= 0
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user