Add mcl_util.is_fuel

This commit is contained in:
Wuzzy 2017-02-21 03:00:48 +01:00
parent 93cbabc61e
commit 649fca5aff
1 changed files with 6 additions and 0 deletions

View File

@ -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