Fix oversight in previous commit

This commit is contained in:
JPG 2016-12-16 14:57:45 +01:00
parent 997b3c59bb
commit 7f038737a0
1 changed files with 5 additions and 2 deletions

View File

@ -282,8 +282,11 @@ minetest.register_on_player_receive_fields(function(player, formname, fields)
else for item in pairs(fields) do
if not item:find(":") then return end
if item:sub(-4) == "_inv" then item = item:sub(1,-5) end
local recipes = minetest.get_all_craft_recipes(item)
if not recipes then return end
local recipes = minetest.get_all_craft_recipes(item)
local is_fuel = minetest.get_craft_result({
method="fuel", width=1, items={item}}).time == 0
if not recipes and is_fuel then return end
if progressive_mode then
local _, player_has_item =